/** Default storage key for persisted auth (full `{ success, data, … }` envelope + tokens). */ export declare const AUTH_STORAGE_KEY = "auth_data"; /** localStorage key for the email saved when the user checks "Remember me" on login. */ export declare const AUTH_REMEMBER_EMAIL_KEY = "auth_remember_email"; /** * @deprecated Use `AUTH_STORAGE_KEY`. Same value; kept so existing imports keep working. * Tokens and `AuthProvider` session share one key by default. */ export declare const AUTH_TOKEN_STORAGE_KEY = "auth_data"; export declare const AUTH_HEADER_KEYS: { readonly tenant: "X-tenant"; readonly contentType: "Content-Type"; readonly accept: "accept"; readonly authorization: "Authorization"; }; export declare const AUTH_CONTENT_TYPES: { readonly json: "application/json"; readonly any: "*/*"; }; //# sourceMappingURL=authHttp.d.ts.map