/** * Provides any class access to the EventBus, StoreManager and Logger. */ import { EventBus } from '../../bus.api'; import { BusStoreApi } from '../../store.api'; import { Logger } from '../../log/index'; import { FabricApi } from '../../fabric.api'; export declare abstract class AbstractCore { readonly bus: EventBus; readonly storeManager: BusStoreApi; readonly log: Logger; readonly fabric: FabricApi; constructor(); }