declare const INTENDED_URL_COOKIE: string; declare const DEFAULT_INTENDED_URL_TTL_SECONDS: number; declare function intendedUrlCookieName(): string; declare function intendedUrlTtlSeconds(): number; declare function isStashableIntendedPath(path: string): boolean; declare function createIntendedUrlCookie(path: string): string | null; declare function createIntendedUrlCookieFromRequest(request: Request): string | null; declare function readIntendedUrl(request: Request): string | null; declare function clearIntendedUrlCookie(): string; export { clearIntendedUrlCookie, createIntendedUrlCookie, createIntendedUrlCookieFromRequest, DEFAULT_INTENDED_URL_TTL_SECONDS, INTENDED_URL_COOKIE, intendedUrlCookieName, intendedUrlTtlSeconds, isStashableIntendedPath, readIntendedUrl, };