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