declare class Cookie { cookie: {}; get(url: string): string; set(url: string, cookies: string[]): void; } export default Cookie;