import type { FilterMatchModeEnum } from './filter-match-mode-enum.js'; /** * Representation of the 'RetrievalDocumentKeyValueListPair' schema. */ export type RetrievalDocumentKeyValueListPair = { /** * Max Length: 1024. */ key: string; value: string[]; matchMode?: FilterMatchModeEnum; } & Record; //# sourceMappingURL=retrieval-document-key-value-list-pair.d.ts.map