import { DepartmentValue } from "../../../Cell"; import { DepartmentFilterOperator } from "./department-operator.interface"; import { DepartmentFilterValue } from "./department-filter-value.interface"; export declare function testDepartmentFilter(departmentValue: DepartmentValue | null, operator: DepartmentFilterOperator, filterValue: DepartmentFilterValue): boolean;