import { FilterOperator } from './enums/filterOperator'; import { FilterType } from './enums/filterType'; export declare class Filter { protected field: string; protected operator: FilterOperator; protected value: any; protected type?: FilterType | undefined; constructor(field: string, operator: FilterOperator, value: any, type?: FilterType | undefined); getField(): string; getOperator(): FilterOperator; getValue(): any; getType(): FilterType | undefined; }