/// import { IGoogleMap, Coord, WrappedNativeFunctions } from '@bespunky/angular-google-maps/core'; import { IGoogleMapsMarker } from '@bespunky/angular-google-maps/overlays'; import { MockDrawableOverlay } from '../mock-drawable-overlay'; export declare type WrappedMarkerFunctions = WrappedNativeFunctions; export interface MockMarker extends WrappedMarkerFunctions { } export declare class MockMarker extends MockDrawableOverlay implements IGoogleMapsMarker { private geometry; constructor(map: IGoogleMap, native?: google.maps.Marker); getBounds(): google.maps.LatLngBounds; getPosition(): google.maps.LatLngLiteral; setPosition(coord: Coord): void; }