/**
 * Path attribute of the admin auth (access) token cookie, configurable
 * through `admin.auth.cookie.path` so multiple Strapi instances on the same
 * parent domain can keep separate cookies (e.g. `/strapi-de/admin`).
 *
 * Browser-safe single source for both sides of the 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_PATH` variable
 * (see create-build-context.ts in @strapi/strapi); the server resolves the
 * same config at runtime. Changing the path requires an admin rebuild, like
 * any other admin config change.
 *
 * Defaults to `/admin` to match the refresh-cookie path used by
 * `getRefreshCookieOptions`.
 */
export declare const DEFAULT_AUTH_COOKIE_PATH = "/admin";
export declare const resolveAuthCookiePath: (configuredPath?: string, warn?: (message: string) => void) => string;
