import type { HostComponent, ViewProps } from 'react-native'; import { DirectEventHandler } from 'react-native/Libraries/Types/CodegenTypes'; import type { UnsafeMixed } from './codegenUtils'; type OnMapboxPointAnnotationDeselectedEventType = { type: string; payload: string; }; type OnMapboxPointAnnotationDragEventType = { type: string; payload: string; }; type OnMapboxPointAnnotationDragEndEventType = { type: string; payload: string; }; type OnMapboxPointAnnotationDragStartEventType = { type: string; payload: string; }; type OnMapboxPointAnnotationSelectedEventType = { type: string; payload: string; }; export interface NativeProps extends ViewProps { coordinate: UnsafeMixed; draggable: UnsafeMixed; id: UnsafeMixed; anchor: UnsafeMixed; selected: UnsafeMixed; onMapboxPointAnnotationDeselected: DirectEventHandler; onMapboxPointAnnotationDrag: DirectEventHandler; onMapboxPointAnnotationDragEnd: DirectEventHandler; onMapboxPointAnnotationDragStart: DirectEventHandler; onMapboxPointAnnotationSelected: DirectEventHandler; } declare const _default: HostComponent; export default _default; //# sourceMappingURL=RNMBXPointAnnotationNativeComponent.d.ts.map