import { AxiosResponse } from 'axios'; export declare const createMockAxiosResponse: (data: T, status?: number) => AxiosResponse; export declare const createMockAxiosError: (status: number, message: string, response?: any) => any; export declare const mockAxiosInstance: { get: jest.Mock; post: jest.Mock; put: jest.Mock; delete: jest.Mock; create: jest.Mock; interceptors: { request: { use: jest.Mock; }; response: { use: jest.Mock; }; }; }; export declare const mockAxios: { create: jest.Mock<{ get: jest.Mock; post: jest.Mock; put: jest.Mock; delete: jest.Mock; create: jest.Mock; interceptors: { request: { use: jest.Mock; }; response: { use: jest.Mock; }; }; }, [], any>; get: jest.Mock; post: jest.Mock; put: jest.Mock; delete: jest.Mock; interceptors: { request: { use: jest.Mock; }; response: { use: jest.Mock; }; }; }; //# sourceMappingURL=axios.d.ts.map