import { ApplicationRef, ComponentRef, ComponentFactory, Injector, NgZone, Type } from '../index'; /** * A no-op implementation of {@link ApplicationRef}, useful for testing. */ export declare class MockApplicationRef extends ApplicationRef { registerBootstrapListener(listener: (ref: ComponentRef) => void): void; registerDisposeListener(dispose: () => void): void; bootstrap(componentFactory: ComponentFactory): ComponentRef; injector: Injector; zone: NgZone; run(callback: Function): any; waitForAsyncInitializers(): Promise; dispose(): void; tick(): void; componentTypes: Type[]; }