/** * @author Kuitos * @since 2020-04-01 */ import type { ParcelConfigObject } from 'single-spa'; import type { FrameworkConfiguration, FrameworkLifeCycles, LoadableApp, ObjectType } from './interfaces'; export declare type ParcelConfigObjectGetter = (remountContainer?: string | HTMLElement) => ParcelConfigObject; export declare function loadApp(app: LoadableApp, configuration?: FrameworkConfiguration, lifeCycles?: FrameworkLifeCycles): Promise;