declare type options = { receiver?: string; timeout?: number; reportUrl?: string; dataType?: 'module' | 'json'; }; declare const getShadowModule: (url: string, options?: options) => Promise<{}>; export { getShadowModule };