import React from 'react'; import { ViewProps, ViewStyle } from 'react-native'; import { SharedValue } from 'react-native-reanimated'; interface ThumbProps extends ViewProps { start: SharedValue; end: SharedValue; offset: SharedValue; stepInterpolatedValue: SharedValue; stepInterpolation?: () => number; shouldBounceToStep?: boolean; gap?: number; disabled?: boolean; secondary?: boolean; defaultStyle?: SharedValue; activeStyle?: SharedValue; disableActiveStyling?: boolean; hitSlop?: ViewProps['hitSlop']; shouldDisableRTL?: boolean; onSeekStart?: () => void; onSeekEnd?: () => void; enableShadow?: boolean; } declare const Thumb: (props: ThumbProps) => React.JSX.Element; export default Thumb;