declare type CookieSetOptions = { path?: string; expires?: Date | string; maxAge?: number; domain?: string; secure?: boolean; httpOnly?: boolean; sameSite?: boolean | `none` | `lax` | `strict`; encode?: (value: string) => string; }; export declare const setCookie: (name: string, value: any, options?: CookieSetOptions) => void; export {};