/**
 * Name of the cookie holding the admin auth (access) token, configurable
 * through `admin.auth.cookie.name` so it cannot collide with a same-named
 * cookie set by another application on a shared parent domain.
 *
 * Browser-safe single source for both sides of the SSO handoff: the admin
 * panel cannot read server config, so the build transports the config value
 * into the bundle through the internal `STRAPI_ADMIN_AUTH_COOKIE_NAME`
 * variable (see create-build-context.ts in @strapi/strapi); the server
 * resolves the same config at runtime. Renaming the cookie requires an admin
 * rebuild, like any other admin config change.
 */
export declare const DEFAULT_AUTH_COOKIE_NAME = "jwtToken";
export declare const resolveAuthCookieName: (configuredName?: string, warn?: (message: string) => void) => string;
