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