declare function use(realInjector: any): void; export declare function get(dependencyName: string): any; declare function on(event: string, callback: (...args: any[]) => any): void; export declare const injector: { use: typeof use; get: typeof get; on: typeof on; }; export {};