import type { CookieSerializeOptions } from 'cookie'; export interface CookieExpiration { expireCookies(options: CookieSerializeOptions): void; } export declare function getExpiredSerializeOptions(options: CookieSerializeOptions): { expires: Date; domain?: string | undefined; encode?(value: string): string; httpOnly?: boolean | undefined; maxAge?: number | undefined; partitioned?: boolean | undefined; path?: string | undefined; priority?: "low" | "medium" | "high" | undefined; sameSite?: true | false | "lax" | "strict" | "none" | undefined; secure?: boolean | undefined; };