/**
 * Representation of the 'ScopedKeyValueListPair' schema.
 */
export type ScopedKeyValueListPair = {
    /**
     * Max Length: 1024.
     */
    key: string;
    value: string[];
    /**
     * Scope of the metadata filter (e.g., collection, document, chunk)
     * Default: "document".
     */
    scope?: 'collection' | 'document' | 'chunk';
} & Record<string, any>;
//# sourceMappingURL=scoped-key-value-list-pair.d.ts.map