import { Cookie } from 'tough-cookie'; export interface ICookieStore { getCookies(currentUrl: string, options?: any): Promise; getCookieString(currentUrl: string): Promise; }