import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
export declare const SourceConfigJson: core.serialization.ObjectSchema<serializers.SourceConfigJson.Raw, ElevenLabs.SourceConfigJson>;
export declare namespace SourceConfigJson {
    interface Raw {
        name: string;
        db_name?: string | null;
        collection_name?: string | null;
        k_dense?: number | null;
        k_keyword?: number | null;
        dense_weight?: number | null;
        keyword_weight?: number | null;
        source_weight?: number | null;
        vector_index_name?: string | null;
        embedding_field?: string | null;
        content_field?: string | null;
        enabled?: boolean | null;
    }
}
