export type StringifyCookieValue = { toString(): string; }; export type SameSite = "Strict" | "Lax" | "None"; export type CookieOptions = { path?: string; domain?: string; secure?: boolean; httpOnly?: boolean; maxAge?: number; expires?: Date; sameSite?: SameSite; }; export declare class Cookie { #private; constructor(name: string, value: string | StringifyCookieValue, options?: CookieOptions); setPath(value?: string): void; setDomain(value?: string): void; setSameSite(value?: SameSite): void; setExpires(value?: Date): void; setMaxAge(value?: number): void; setHttpOnly(value?: boolean): void; setSecure(value?: boolean): void; serialize(): string; } //# sourceMappingURL=Cookie.d.ts.map