import type { IApplication, ICurrentTenant, ICurrentUser, IUser } from '@c8y/client'; import type { RemoteModuleFactoryWithMetadata } from '../plugins/plugins'; export interface BootstrapMetaData { options: Record; currentUser?: IUser | ICurrentUser; currentApp?: IApplication; currentTenant?: ICurrentTenant; remoteModuleFactories?: Array; }