/// interface trackProps { prefixCls: string; vertical: boolean; reverse: boolean; bound: number; min: number; max: number; } declare function Track(props: trackProps): JSX.Element; export default Track;