import type { DocumentKeyValueListPair } from './document-key-value-list-pair.js';
import type { Chunk } from './chunk.js';
/**
 * Representation of the 'DocumentOutput' schema.
 */
export type DocumentOutput = {
    /**
     * Format: "uuid".
     */
    id: string;
    /**
     * Default: [].
     */
    metadata?: DocumentKeyValueListPair[];
    chunks: Chunk[];
} & Record<string, any>;
//# sourceMappingURL=document-output.d.ts.map