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