import React, { type ComponentType, type PropsWithChildren } from 'react'; import type { StyleProp, TextStyle, ViewStyle } from 'react-native'; import type { PickerProps } from '../base'; type ContextValue = { itemHeight: number | undefined; visibleItemCount: number | undefined; readOnly: boolean | undefined; enableScrollByTapOnItem: boolean | undefined; scrollEventThrottle: number | undefined; pickerStyle: StyleProp | undefined; itemTextStyle: StyleProp | undefined; overlayItemStyle: StyleProp | undefined; contentContainerStyle: StyleProp | undefined; }; type DatePickerCommonPropsProviderProps = PropsWithChildren; declare const DatePickerCommonPropsProvider: ({ children, ...restProps }: DatePickerCommonPropsProviderProps) => React.JSX.Element; export default DatePickerCommonPropsProvider; type PickedWheelPickerProps = Pick, Exclude | 'style'>; export declare const withCommonProps: (WheelPickerComponent: ComponentType) => typeof WheelPickerComponent; //# sourceMappingURL=DatePickerCommonPropsProvider.d.ts.map