import { EventEmitter, FactoryProvider } from '@angular/core'; import { GoogleMapsComponentBase, IGoogleMapsEventData } from '@bespunky/angular-google-maps/core'; import { WrappedNativeFunctions } from '@bespunky/angular-google-maps/core'; import { MockNative } from './mock-native'; import { MockEmittingWrapper } from './mock-emitting-wrapper'; declare class TestWrapper extends MockEmittingWrapper { } interface TestWrapper extends WrappedNativeFunctions { } export declare function TestWrapperFactory(): TestWrapper; export declare const TestWrapperFactoryProvider: FactoryProvider; export declare class MockComponent extends GoogleMapsComponentBase { readonly NativeClickEventName = "click"; readonly NativeChangeEventName = "dummy_change"; something: any; click: EventEmitter; dummyChange: EventEmitter; } export {};