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