import { Operator } from './operator';
import moment, { Moment } from 'moment';
import { LessThanEqual } from './less-than-equal';
import { OperatorService } from '../../operator-service/operator.service';
import { Operators } from './operators';
import { Query } from '../query/query';
/**
 * Greater or equal than operator for Datetime fields
 */
export declare class LessThanEqualDateTime extends Operator<Moment> {
    protected lessThanEqual: LessThanEqual;
    constructor(operators: OperatorService);
    createQuery(elasticKeywords: Array<string>, args: Array<moment.Moment>): Query;
    getOperatorNameTemplate(): Array<string>;
    serialize(): Operators | string;
}
