import * as React from 'react'; import { Control } from './types.js'; declare const NavigationControl: ({ position, ...other }: NavigationControlType) => null; declare const _default: React.MemoExoticComponent<({ position, ...other }: NavigationControlType) => null>; type NavigationControlType = { showCompass?: boolean | undefined; showZoom?: boolean | undefined; visualizePitch?: boolean | undefined; } & Control; export { NavigationControl, _default as default };