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