export declare const FILTER_OPERATION_SIMPLE_ARRAY_MAPPING: string[]; export declare const FILTER_OPERATION_MAPPING: { readonly string: readonly ["oneOf", "matchesAll", "matchesAny", "isEmpty", "isNotEmpty"]; readonly number: readonly ["gte", "eq", "gt", "lt", "lte", "isEmpty", "isNotEmpty"]; readonly boolean: readonly ["eq", "isEmpty", "isNotEmpty"]; readonly 'Array': string[]; readonly 'Array': string[]; readonly 'Array': string[]; }; export type FilterOperationDataType = 'string' | 'number' | 'boolean' | 'Array' | 'Array' | 'Array'; export type FilterOperationValueType = number | boolean | string[] | number[] | boolean[]; export type FILTER_OPERATIONS = FilterOperationMapping[keyof FilterOperationMapping] extends readonly (infer T)[] ? T : never; export declare const FILTER_OPERATOR_MAP: Record; export declare const FILTER_PROPERTY_DATA_TYPE_COLORS: Record; export type FilterOperationMapping = typeof FILTER_OPERATION_MAPPING;