import { AxiosResponse } from 'axios'; import { Response } from '../types'; export type FormattedResponse = { data: T; response: Response; httpReponse: AxiosResponse; }; export declare const formatResponse: (response: AxiosResponse) => FormattedResponse;