/** * Load a JavaScript script from an external source and executes it (execution is asynchronous). * * @param src - The `src` paramater to be given to the `script` tag, usually the URL to the script source. * @returns A promise giving a disposal function. */ export declare function loadScript(src: string): Promise<() => void>;