declare const PASSWORD_CONFIRM_COOKIE: string; declare const DEFAULT_PASSWORD_CONFIRM_TTL_SECONDS: number; declare function passwordConfirmCookieName(): string; declare function passwordConfirmTtlSeconds(): number; declare function hasFreshPasswordConfirmation(request: Request, userId: number): boolean; declare function createPasswordConfirmCookie(userId: number): string; declare function clearPasswordConfirmCookie(): string; export { clearPasswordConfirmCookie, createPasswordConfirmCookie, DEFAULT_PASSWORD_CONFIRM_TTL_SECONDS, hasFreshPasswordConfirmation, PASSWORD_CONFIRM_COOKIE, passwordConfirmCookieName, passwordConfirmTtlSeconds, };