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