declare class CookieStore { private static cookieStore; static get(key: string): string[] | undefined; static set(key: string, value: string[]): void; } export { CookieStore };