import type * as Phonic from "../index.mjs";
export interface ExtractionSchema {
    /** The ID of the extraction schema. */
    id: string;
    /** The name of the extraction schema. */
    name: string;
    /** Instructions for how to extract data from conversations. */
    prompt: string;
    /** Array of field definitions specifying what data to extract. */
    fields: Phonic.ExtractionField[];
}
