export default Engine; declare class Engine { /** @readonly */ readonly version: "0.0.1"; /** @type {ServiceRegistry} */ services: ServiceRegistry; /** @private */ private logging; /** * @param {string} value * @returns {this} */ setLogLevel(value: string): this; /** * * @param {string} scope */ getLogger(scope?: string): import("@toolcase/logging/lib/Logger").default; } import ServiceRegistry from "./ServiceRegistry";