import { Operator } from './operator'; import { Operators } from './operators'; /** * A strict less than operator for numeric fields. */ export declare class LessThan extends Operator { constructor(); getOperatorNameTemplate(): Array; serialize(): Operators | string; }