react-native-dates-picker
Version:
Customizable date picker for React Native
11 lines • 375 B
TypeScript
/// <reference types="react" />
import { type ViewStyle } from 'react-native';
interface WheelProps {
value: number;
setValue?: (value: number) => void;
items: string[];
indicatorStyle?: ViewStyle;
}
export default function WheelNative({ value, setValue, items, indicatorStyle, }: WheelProps): JSX.Element;
export {};
//# sourceMappingURL=WheelNative.d.ts.map