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