import React from 'react'; import type { ViewStyle } from 'react-native'; type MonthYearPickerProps = { style?: ViewStyle; value?: Date; onChange: (date: Date) => void; minimumDate?: Date; maximumDate?: Date; autoTheme?: boolean; locale?: string; textColor?: string; }; declare const MonthYearPickerView: ({ value, minimumDate, maximumDate, onChange, locale, textColor, ...props }: MonthYearPickerProps) => React.JSX.Element; export default MonthYearPickerView; //# sourceMappingURL=MonthYearPickerViewIOS.d.ts.map