export declare function loadScript(url: string): Promise; export declare function loadComponent(url: string, scope: string): Promise; export declare function createModule(scope: string, module: string): Promise; /** * Iterate over active plugins in an extension. * * #### Notes * This also populates the disabled */ export declare function activePlugins(extension: any, disabledExtensions: string[]): Generator; export interface IFederatedExtensionData { name: string; load: string; extension?: string; style?: string; mimeExtension?: string; } /** * Check if Voila app should use MathJax 2 or MathJax 3 * @TODO remove in 1.0.0 */ export declare function shouldUseMathJax2(): boolean;