import { AxiosResponse } from 'axios';
import { CacheConfig } from './interfaces';
export declare const writeOnCache: <T = any>(response: AxiosResponse<T>, config?: CacheConfig) => void;
export declare const readFromCache: <T = any>(response: AxiosResponse<T>, config?: CacheConfig) => AxiosResponse<T> | undefined;
