export declare const validChars: RegExp; export declare const validCharsTeamName: RegExp; export declare const isValidOpName: (opName: string) => boolean; export declare const isValidTeamName: (teamName: string) => boolean; export declare const validateEmail: (email: string) => boolean; export declare const validatePasswordFormat: (input: string) => true | "❗ This password is too short, please choose a password that is at least 8 characters long"; export declare const validateCpassword: (input: string, answers: { password: string; }) => string | boolean;