/**
 * Flowtype definitions for navigation-control
 * Generated by Flowgen from a Typescript Definition
 * Flowgen v1.21.0
 */

import { Element } from "react";
import { MapControlProps } from "./use-map-control";
declare type NavigationControlProps = {
  ...MapControlProps,
  ...$Rest<
    {
      className: string,
      style: Object,
      onViewStateChange: Function,
      onViewportChange: Function,
      showCompass: boolean,
      showZoom: boolean,
      zoomInLabel: string,
      zoomOutLabel: string,
      compassLabel: string,
      ...
    },
    { ... }
  >,
};
declare export default function NavigationControl(
  props: NavigationControlProps
): Element;
