import { type Field, type TabAsField } from 'mzinga/types'; import type { PostgresAdapter } from '../types'; type SanitizeQueryValueArgs = { adapter: PostgresAdapter; field: Field | TabAsField; isUUID: boolean; operator: string; relationOrPath: string; val: any; }; export declare const sanitizeQueryValue: ({ adapter, field, isUUID, operator: operatorArg, relationOrPath, val, }: SanitizeQueryValueArgs) => { operator: string; value: unknown; }; export {}; //# sourceMappingURL=sanitizeQueryValue.d.ts.map