/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * A document source object containing the unique identifier of the document and the document itself.
 */
export interface DocumentSource {
    /** The unique identifier of the document */
    id?: string;
    document?: Record<string, unknown>;
}
