import { Cookie } from 'tough-cookie'; declare class CookieStore { #private; constructor(); getCookies(url: string): Array; setCookie(cookieName: string, url: string): Promise; private getCookieStoreIndex; private persist; } declare const cookieStore: CookieStore; export { cookieStore };