import type { Router } from './Router'; import type { ResourceManager } from './ResourceManager'; import type { UmdExportResolver } from './UmdExportResolver'; import type { DevTool } from './DevTool'; import type { Downloader } from './Downloader'; import type { Atomic } from './Atomic'; declare global { interface Window { __BLUEBELL_DISABLE_DEADLOOP_DETECT__?: boolean; __BLUEBELL_MAP__: Map>; __BLUEBELL_ROUTER__: Router; __BLUEBELL_RESOURCE_MANAGER__: ResourceManager; __BLUEBELL_UMD_EXPORT_RESOLVER__: UmdExportResolver; __BLUEBELL_DEV_TOOL__: DevTool; __BLUEBELL_DOWNLOADER__: Downloader; __BLUEBELL_ATOMIC__: Atomic; } } export {};