/** * Load an amd module locally and fall back to specified CDN if unavailable. * * @param moduleName The name of the module to load.. * @param version The semver range for the module, if loaded from a CDN. * * By default, the CDN service used is jsDelivr. However, this default can be * overridden by specifying another URL via the HTML attribute * "data-jupyter-widgets-cdn" on a script tag of the page. * * The semver range is only used with the CDN. */ export declare function requireLoader(moduleName: string, moduleVersion: string): Promise; /** * Render widgets in a given element. * * @param element (default document.documentElement) The element containing widget state and views. * @param loader (default requireLoader) The function used to look up the modules containing * the widgets' models and views classes. (The default loader looks them up on jsDelivr) */ export declare function renderWidgets(element?: HTMLElement, loader?: (moduleName: string, moduleVersion: string) => Promise): void; //# sourceMappingURL=libembed-amd.d.ts.map