declare class TextValidators { static validateLivingName: { validator: (value: string) => boolean; message: (props: { value: string; }) => string; }; static validateObjectName: { validator: (value: string) => boolean; message: (props: { value: string; }) => string; }; static validateDescription: { validator: (value: string) => boolean; message: (props: { value: string; }) => string; }; static validateEmail: { validator: (value: string) => boolean; message: (props: { value: string; }) => string; }; static validatePhone: { validator: (value: string) => boolean; message: (props: { value: string; }) => string; }; static validatePassword: { validator: (value: string) => boolean; message: (props: { value: string; }) => string; }; static validateAccountname: { validator: (value: string) => boolean; message: (props: { value: string; }) => string; }; } export default TextValidators;