import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { LiteralJsonSchemaProperty } from "./LiteralJsonSchemaProperty";
export declare const DataCollectionResultCommonModel: core.serialization.ObjectSchema<serializers.DataCollectionResultCommonModel.Raw, ElevenLabs.DataCollectionResultCommonModel>;
export declare namespace DataCollectionResultCommonModel {
    interface Raw {
        data_collection_id: string;
        value?: unknown | null;
        json_schema?: LiteralJsonSchemaProperty.Raw | null;
        rationale: string;
    }
}
