import { Container } from './Container'; import { App } from './App'; /** * Container that can only activate applications manually, by activateApp(). */ export declare class ManualContainer, AppAdditionalOptions = Record> extends Container { protected get debugName(): string; get [Symbol.toStringTag](): string; /** * Activate an application specified by a name. * @param name App name to be activated. * @returns Promise */ activateApp(name: string | null): Promise | null>; }