import { BaseService } from './services/BaseService'; export declare class ServiceRegistry { private static _instance; private servicesMap; private constructor(); getServiseMap(): Map; static get instance(): ServiceRegistry; register(ctor: new (...args: any[]) => T, ...args: any[]): this; getService(ctor: new (...args: any[]) => T): T; exists(ctor: new (...args: any[]) => T): boolean; }