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