import type { VectorKeyValueListPair } from './vector-key-value-list-pair.js';
/**
 * Representation of the 'MetadataItem' schema.
 */
export type MetadataItem = {
    /**
     * ID of collection
     * Format: "uuid".
     */
    id: string;
    /**
     * List of metadata of the collections or documents or chunks
     * Default: [].
     */
    metadata?: VectorKeyValueListPair[] | null;
} & Record<string, any>;
//# sourceMappingURL=metadata-item.d.ts.map