import { CookiesCache } from './common';
export declare const setCookiesFromAxiosResponseIfPossible: ({ response, cookieCache, }: {
    response: {
        headers: Record<string, string | string[] | undefined>;
    };
    cookieCache?: CookiesCache | undefined;
}) => Promise<void | null>;
