/** Cookie name for core refresh token. */ export declare const CORE_REFRESH_TOKEN_COOKIE = "refreshToken"; /** Cookie name for Better Auth session token. */ export declare const BETTER_AUTH_SESSION_COOKIE = "better-auth.session_token"; /** Cookie name for Better Auth CSRF token. */ export declare const BETTER_AUTH_CSRF_COOKIE = "better-auth.csrf_token"; /** Cookie name for Better Auth OAuth state. */ export declare const BETTER_AUTH_STATE_COOKIE = "better-auth.state"; /** Base path for IDP auth routes. */ export declare const AUTH_BASE_PATH = "/auth"; /** Base path for Better Auth routes. */ export declare const BETTER_AUTH_BASE_PATH = "/auth/better-auth"; /** Magic-link intent values used in query/body contracts. */ export declare const MAGIC_LINK_INTENT: { readonly SIGNUP: "signup"; readonly RESET: "reset"; }; export type MagicLinkIntentValue = (typeof MAGIC_LINK_INTENT)[keyof typeof MAGIC_LINK_INTENT]; export declare function isMagicLinkIntent(value: unknown): value is MagicLinkIntentValue; export declare function parseMagicLinkIntent(value: unknown): MagicLinkIntentValue | undefined; /** Source parameter values used across IDP requests. */ export declare const SOURCE: { readonly APP: "app"; readonly PLATFORM: "platform"; }; /** Default TTL for project members cache in seconds (15 minutes). */ export declare const DEFAULT_PROJECT_MEMBERS_CACHE_TTL_SECONDS: number; /** Default timeout for OWOX Client requests in milliseconds (10 seconds). */ export declare const DEFAULT_OWOX_CLIENT_TIMEOUT_MS = 10000; /** Error messages for session and user resolution. */ export declare const SESSION_ERROR_MESSAGES: { readonly NOT_FOUND: "No session found for user info"; readonly RESOLVE_FAILED: "Failed to resolve session from Better Auth token"; readonly USER_ACCOUNT_NOT_FOUND: "User or account not found for session"; readonly GET_SESSION_FAILED: "Failed to get Better Auth session"; }; //# sourceMappingURL=constants.d.ts.map