/**
 * Representation of the 'Citation' schema.
 */
export type Citation = {
    /**
     * Unique identifier for inline citation
     */
    ref_id?: number;
    /**
     * Title of the citation
     */
    title: string;
    /**
     * URL of the citation
     */
    url: string;
    /**
     * Start index of the citation in the response text
     */
    start_index?: number;
    /**
     * End index of the citation in the response text
     */
    end_index?: number;
} & Record<string, any>;
//# sourceMappingURL=citation.d.ts.map