/**
 * Representation of the 'DocumentKeyValueListPair' schema.
 */
export type DocumentKeyValueListPair = {
    /**
     * Max Length: 1024.
     */
    key: string;
    value: string[];
    /**
     * Default match mode for search filters
     * Default: "ANY".
     */
    matchMode?: 'ANY' | 'ALL' | any | Record<string, any>;
} & Record<string, any>;
//# sourceMappingURL=document-key-value-list-pair.d.ts.map