import { IPepSmartFilterField, PepSmartFilterBaseField } from './field'; import { IPepSmartFilterData } from './filter'; import { IPepSmartFilterOperator, IPepSmartFilterOperatorUnit } from './operator'; import { PepSmartFilterType } from './type'; export declare function createSmartFilterField(data: IPepSmartFilterField, type: PepSmartFilterType): PepSmartFilterBaseField; export declare function createSmartFilter(fieldId: string, operator: IPepSmartFilterOperator, first: any, second?: any, operatorUnit?: IPepSmartFilterOperatorUnit): IPepSmartFilterData;