export interface CookiesCache {
    set: (key: string, value: string) => Promise<void>;
    get: (key: string) => Promise<string | undefined>;
}
export declare const COOKIES_CACHE_COOKIES_LIST_KEY = "google-trends-api-cookies-list.json";
export declare const COOKIES_CACHE_SESSION_TOKEN_KEY = "google-trends-api-session-token.json";
