import type { KeyValueListPair } from './key-value-list-pair.js';
import type { RetrievalDocument } from './retrieval-document.js';
/**
 * DataRepository schema returned by the Vector search endpoint
 */
export type DataRepositoryWithDocuments = {
    /**
     * Unique identifier of this DataRepository.
     * Format: "uuid".
     */
    id: string;
    title: string;
    /**
     * Metadata attached to DataRepository. Useful to later limit search to a subset of DataRepositories.
     */
    metadata?: KeyValueListPair[];
    documents: RetrievalDocument[];
} & Record<string, any>;
//# sourceMappingURL=data-repository-with-documents.d.ts.map