import type { ComponentType } from 'react'; import type { ImperiumClientConfig, ImperiumClientModule } from './types'; export declare class ImperiumClient { private readonly _moduleFactoryFn; private _modules; private readonly rootComponent; constructor(config: ImperiumClientConfig); start(): Promise; get modules(): ImperiumClientModule[]; }