import { IAuthDefinitions, IAuthWithTokenResponse, IHttpResponse, IJwtTokenResponse } from '../../../domain';
type IMapKeys<T> = Partial<{
    [responseKey in keyof T]: string;
}>;
export declare const transferTokenFromResponseToCookie: (response: IHttpResponse, definitions: IAuthDefinitions) => (authResponse: IAuthWithTokenResponse, mapKeys: IMapKeys<IJwtTokenResponse>) => Record<string, any>;
export {};
