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