import { InjectionToken } from '@angular/core'; import { Wrapper } from '../types/abstraction'; /** * An injection token used by `GoogleMapsComponentBase` and its extending classes to specify the factory that will be used to * create a new native object of the type corresponding to the extending class. * * Components and directives extending `GoogleMapsComponentBase` should define a `FactoryProvider` for this token. */ export declare const NativeInstance: InjectionToken; /** * An injection token used by `GoogleMapsComponentBase` and its extending classes to specify the factory that will be used to * create a new wrapper object of the type corresponding to the extending class. * * Components and directives extending `GoogleMapsComponentBase` should define a `FactoryProvider` for this token. */ export declare const WrapperInstance: InjectionToken>;