export default XHR;
declare class XHR {
    constructor({ url, method, type, data }?: {
        url: any;
        method?: string;
        type?: string;
        data?: {};
    });
}
