/** * Loads the scripts from dependencies list. * It reads the dependency from components map and process * the scripts mapped in it. * Once all scripts loaded successfully, it call render. * @param components components list eq., section... * @param staticServer staticServer url * @returns promise */ declare const loadComponents: (components: [string], staticServer?: string) => Promise; export default loadComponents;