/** * Auth Email Persistence * * Provides a reactive property backed by `localStorage` that persists the * user's email address across sessions. Used by the "remember me" checkbox * in sign-in and reset password forms. * * SSR-safe: returns a plain in-memory prop when `window` is not available. * * @module auth/auth-email-prop */ /** * Creates a reactive property for persisting the user's email. * * In browser environments, backed by `localStorage` (key `'bui_auth_email'`). * In SSR environments, returns a plain in-memory `Prop`. * * @returns A reactive `Prop`. */ export declare const useAuthEmailProp: () => import("@tempots/core").Prop;