declare type options = { url: string; data: object; callbackKey: string; callbackName: string; timeout: number; reportUrl: string; }; declare const jsonp: (options: options) => Promise<{}>; export { jsonp };