/// import { NativeSyntheticEvent, ViewStyle } from 'react-native'; import type { MapLocation, MapPin } from './types'; declare type BingMapsProps = { credentialsKey: string; pins?: MapPin[]; mapLocation?: MapLocation; mapStyle?: string; style?: ViewStyle; buildingsVisible?: boolean; businessLandmarksVisible?: boolean; transitFeaturesVisible?: boolean; compassButtonVisible?: boolean; tiltButtonVisible?: boolean; zoomButtonsVisible?: boolean; copyrightDisplay?: 'allowHiding' | 'always'; onMapPinClicked?: (e: NativeSyntheticEvent) => void; onMapLoadingStatusChanged?: (e: NativeSyntheticEvent) => void; }; export declare const BingMapsViewManager: import("react-native").HostComponent; export default BingMapsViewManager;