import type { RetrievalScopedKeyValueListPair } from './retrieval-scoped-key-value-list-pair.js'; /** * Representation of the 'RetrievalBinaryBooleanFilter' schema. */ export type RetrievalBinaryBooleanFilter = { operator: 'and' | 'or'; left: RetrievalBinaryBooleanFilter | RetrievalScopedKeyValueListPair; right: RetrievalBinaryBooleanFilter | RetrievalScopedKeyValueListPair; } & Record; //# sourceMappingURL=retrieval-binary-boolean-filter.d.ts.map