declare class Cookie { protected name: string; protected value: any; protected expires: number; protected path: string; protected domain: string | undefined | null; protected secure: boolean; protected httpOnly: boolean; protected raw: boolean; protected sameSite: "lax" | "strict" | "none" | undefined | null; constructor(name: string, value: any, expires?: number, path?: string, domain?: string | undefined | null, secure?: boolean, httpOnly?: boolean, raw?: boolean, sameSite?: "lax" | "strict" | "none" | undefined | null); static fromString(_cookie: string): Cookie | null; static getExpiresTimeFromLifeTime(lifetime: number | string): number; getName(): string; getExpiresTime(): number; getPath(): string; getDomain(): string | null | undefined; isSecure(): boolean; isHttpOnly(): boolean; isRaw(): boolean; getSameSite(): "lax" | "strict" | "none" | null | undefined; getValue(): any; toString(): string; } export default Cookie;