import { CtrlItem } from "./form-ctrl";
export declare const validateGlobalFunction: {
    isRequired(message?: string): (value?: string, ctrl?: CtrlItem) => any;
    isInt: (message?: string) => (value: any) => any;
    isNumber: (message?: string) => (value: any) => any;
    isPhone: (message?: string) => (value: any) => any;
    isEmail: (message?: string) => (value: any) => any;
    isMatched: (pattern: string, message?: string) => (value: any) => any;
    isLengthInRange: (min?: number, max?: number, message?: string) => (value: any) => string;
};
export declare function registerValidateAll(): void;
