import React from 'react'; import * as RN from 'react-native'; export type ThumbProps = { style?: RN.StyleProp; color?: RN.ColorValue; size: number; thumbImage?: RN.ImageURISource; thumb?: 'min' | 'max'; value: number; minimumValue: number; maximumValue: number; step: number; updateValue: (value: number) => void; CustomThumb?: React.ComponentType<{ value: number; thumb?: 'min' | 'max'; }>; }; export declare const THUMB_SIZE = 1; declare const _default: React.MemoExoticComponent<({ color, CustomThumb, size, style, thumbImage, thumb, value, minimumValue, maximumValue, step, updateValue }: ThumbProps) => React.JSX.Element>; export default _default;