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