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