import { type ReactElement } from "react"; import { type IGeoViewportControl } from "./GeoViewportControl.js"; export interface IPushpinViewportControl { disabled: boolean; properties: IGeoViewportControl["properties"]; pushData: IGeoViewportControl["pushData"]; getCurrentMapView?: IGeoViewportControl["getCurrentMapView"]; beforeNavigationContent?: IGeoViewportControl["beforeNavigationContent"]; } /** * Viewport control for pushpin charts. * Thin wrapper around GeoViewportControl for backward compatibility. * * @internal */ export declare function PushpinViewportControl(props: IPushpinViewportControl): ReactElement; //# sourceMappingURL=PushpinViewportControl.d.ts.map