import type { HostComponent, ViewProps } from 'react-native'; import type { BubblingEventHandler, Double } from 'react-native/Libraries/Types/CodegenTypes'; type OnChangeEvent = Readonly<{ newDate: string; }>; export interface NativeProps extends ViewProps { value: Double; minimumDate?: Double; maximumDate?: Double; textColor?: string; locale?: string; onChange: BubblingEventHandler; } declare const _default: HostComponent; export default _default; //# sourceMappingURL=NativeMonthYearPickerView.d.ts.map