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