export declare function sqlUserNameValidator(name: string): string | undefined; /** * Your password must be at least 8 characters in length. * Your password must be no more than 128 characters in length. * Your password must contain characters from three of the following categories – English uppercase letters, English lowercase letters, numbers (0-9), and non-alphanumeric characters (!, $, #, %, etc.). * Your password cannot contain all or part of the login name. Part of a login name is defined as three or more consecutive alphanumeric characters. */ export declare function sqlPasswordValidatorGenerator(name: string): (password: string) => string | undefined; export declare function sqlConfirmPasswordValidatorGenerator(password: string): (confirm: string) => string | undefined; //# sourceMappingURL=checkInput.d.ts.map