import { SandboxPlugin } from './sandbox-plugin'; export default class AjaxRequestSDK extends SandboxPlugin { init(): Promise; getJSON(url: string, options: { headers?: {}; query?: {}; }): Promise; postJSON(url: string, options: { body: {}; headers?: {}; query?: {}; }): Promise; getArrayBuffer(url: string, options: { headers?: {}; query?: {}; }): Promise; }