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