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