import type { ViewProps } from 'react-native'; import { DirectEventHandler, Double } from 'react-native/Libraries/Types/CodegenTypes'; import type { UnsafeMixed } from './codegenUtils'; export type OnMapSteadyEvent = { reason: 'steady' | 'timeout'; idleDurationMs?: Double; lastGestureType?: string | null | undefined; timestamp: Double; }; export interface NativeProps extends ViewProps { quietPeriodMs?: UnsafeMixed; maxIntervalMs?: UnsafeMixed; hasOnMapSteady: UnsafeMixed; onMapSteady?: DirectEventHandler; } declare const _default: (props: Omit & { ref?: React.Ref; }) => React.ReactNode; export default _default; //# sourceMappingURL=RNMBXCameraGestureObserverNativeComponent.d.ts.map