import type { FilterPredicate } from '@epam/uui-core'; interface RangeValue { from?: string | number | null; to?: string | number | null; } /** * Checks if the value is a range object with at least one boundary property defined */ export declare const isValidRangeValue: (range: RangeValue | null | undefined) => boolean; export declare const isFilledArray: (arr: any) => boolean; export declare const hasSomeNullishProp: (obj: Record) => boolean; export declare const normalizeFilterWithPredicates: (filter: TFilter) => {}; export declare const getValue: (predicate: keyof FilterPredicate, value: any) => any; export {}; //# sourceMappingURL=predicateHelpers.d.ts.map