declare interface AxiosResponse { data: T; status: number; statusText: string; headers: { [key: string]: string; 'content-type'?: string; }; config: { method?: string; url?: string; params?: Record; headers?: Record; }; }