import { CookiesCache } from './common';
/**
 * we use a session-token to send the same user-agent through got-scraping when using cookies
 * - that way, when the site assigns an id cookie to our browser, they dont suddenly see a new browser with that same id
 */
export declare const findOrCreateSessionTokenForCookieCache: ({ cookieCache, }: {
    cookieCache: CookiesCache;
}) => Promise<string>;
export declare const useSessionTokenForCookieCacheIfPossible: ({ cookieCache, }: {
    cookieCache?: CookiesCache | undefined;
}) => Promise<string> | null;
