import React from 'react'; interface WheelProps { value?: number; children?: React.ReactNode; onSelect?: (index: number) => void; } declare const Wheel: React.NamedExoticComponent; export default Wheel;