import { FormatHandle, Formatter, FormatType } from '../../../../formatter/formatter'; import { GreaterThanDescription } from './greater-than-description'; import { FormatContext } from '../../../../formatter/format-context'; export declare class GreaterThanFormatter implements FormatHandle> { type: FormatType; canHandle(param: any): boolean; handle(param: GreaterThanDescription, ctx: FormatContext, formatter: Formatter): string; }