import { type SearchTerm } from '../enums/index.js'; import type { FilterCondition } from '../interfaces/index.js'; /** Execute filter condition check on each cell */ export declare const executeNumberFilterCondition: FilterCondition; /** * From our search filter value(s), get the parsed value(s). * This is called only once per filter before running the actual filter condition check on each cell */ export declare function getFilterParsedNumbers(inputSearchTerms: SearchTerm[] | undefined): number[]; //# sourceMappingURL=numberFilterCondition.d.ts.map