type Options = { startLimit?: number; maxLimit?: number; enableWithCredentials?: boolean; headers?: any; }; declare const http: { send: (url: string, opts: Options, callback: (v: string) => void) => XMLHttpRequest; }; export default http;