import { Operator } from './operator'; import { Operators } from './operators'; /** * Greater or equal than operator for numeric fields */ export declare class MoreThanEqual extends Operator { constructor(); getOperatorNameTemplate(): Array; serialize(): Operators | string; }