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