export declare const EMAIL_RULE: (value?: string) => true | "Field must be a valid email"; export declare const Capitalize: (str?: string | null, separator?: string) => string; export declare const DEFAULT_REQUIRED_MESSAGE = "This field is required"; export declare const DEFAULT_PHONE_MESSAGE = "This field must be a valid phone"; /** * Verifica si el código se está ejecutando en un entorno de navegador (CSR). * Retorna false cuando se ejecuta en el servidor (SSR). * @returns {boolean} true si está en el navegador, false en el servidor */ export declare const isBrowser: () => boolean;