export declare type ValidationMessageReportFormatter = (message: any) => Promise<string | undefined> | string | undefined;
export declare type ValidationMessageFormatter = (message?: string, injectOptons?: any) => Promise<any> | any;
export declare function defaultValidationMessageFormatter(message?: string, injectOptons?: any): string | undefined;
export declare function defaultValidationMessageReportFormatter(_: any): undefined;
