import { AxiosInstance } from 'axios'; import { registerMock, internalRegisterMock } from './registerMock'; import { setDefaultOptions } from './defaultOptions'; import { MockXHRType } from './types'; declare const MockXHR: MockXHRType; declare const wrapAxiosAdapter: (axiosInstance: AxiosInstance) => void; declare const wrapChildAxiosAdapter: (axiosInstance: AxiosInstance, widgetName: string) => void; export { wrapAxiosAdapter, wrapChildAxiosAdapter, registerMock, setDefaultOptions, internalRegisterMock, MockXHR };