import { Operator } from './operator'; import { Moment } from 'moment'; import { OperatorService } from '../../operator-service/operator.service'; import { Query } from '../query/query'; import { Operators } from './operators'; import { LessThanDate } from './less-than-date'; /** * Less or equal than operator for Date fields */ export declare class LessThanEqualDate extends Operator { protected lessThan: LessThanDate; constructor(operators: OperatorService); createQuery(elasticKeywords: Array, args: Array): Query; getOperatorNameTemplate(): Array; serialize(): Operators | string; }