import type { FilterClause } from '../../../../providers/database/pagination/types.js'; /** * Maps a config operator string to the corresponding {@link FilterClause} operator. * * @param operator - Config operator: `'eq' | 'in' | 'contains' | 'between'` * @returns The filter clause operator: `'equal' | 'in' | 'contains' | 'between'` * @throws Error when operator is not supported */ export declare function mapOperator(operator: string): FilterClause['operator']; //# sourceMappingURL=map-operator.d.ts.map