import { CookiesCache } from './common';
export declare const getCookiesHeadersFromCookieCacheIfPossible: ({ cookieCache, }: {
    cookieCache?: CookiesCache | undefined;
}) => Promise<{
    cookie: string;
} | null>;
