import type { KeyValueListPair } from './key-value-list-pair.js';
/**
 * Representation of the 'TextOnlyBaseChunk' schema.
 */
export type TextOnlyBaseChunk = {
    content: string;
    metadata: KeyValueListPair[];
} & Record<string, any>;
//# sourceMappingURL=text-only-base-chunk.d.ts.map