import { InjectionToken, Injector, Type } from "@angular/core"; import { IMock } from "moq.ts"; /** * Gets an instance of IMock interface for mocked object according to provided token. * Injector should be built with {@link moqInjectorProvidersFactory}. * * @param token angular token * @param injector angular injector */ export declare const resolveMock: (token: Type | InjectionToken, injector: Injector) => IMock;