export declare const Validators: {
    text: {
        pattern: RegExp;
        message: string;
    };
    name: {
        pattern: RegExp;
        message: string;
    };
    phone: {
        pattern: RegExp;
        message: string;
    };
    number: {
        pattern: RegExp;
        message: string;
    };
};
export declare function validateInput(value: string, type: keyof typeof Validators): string | true;
export type ValidatorType = keyof typeof Validators;
