export interface SetCookieProps { name: string; value: any; /** Expiration time in days. If undefined, it becomes a session cookie (deletes on browser close) */ days?: number; /** The URL path the cookie is valid for (default: '/') */ path?: string; /** If true, cookie is only sent over HTTPS (default: true in production) */ secure?: boolean; /** Cross-origin policy (default: 'Lax') */ sameSite?: 'Strict' | 'Lax' | 'None'; } export default function SetCookie({ name, value, days, path, secure, sameSite }: SetCookieProps): boolean;