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