export declare class AxOperator { text: string; value: string; constructor(operator?: AxOperator); /*** * getStringOperator function use to get String operator array */ static getStringOperator(): Array; /*** * getNumericOperator function use to get Numerical operator array */ static getNumericOperator(): Array; /*** * getDateOperator function use to get Date operator array */ static getDateOperator(): Array; } export declare enum DateOperatorIndex { equalTo = 1, greaterThan = 2, lessThan = 3, between = 4, in = 5, notIn = 6, greaterThanOrEqualTo = 7, lessThanOrEqualTo = 8, today = 9, tomorrow = 10, yesterday = 11, week = 12, month = 13, year = 14, currentQuarter = 15, nextQuarter = 16, previousQuarter = 17, firstQuarter = 18, secondQuarter = 19, thirdQuarter = 20, fourthQuarter = 21 }