///
import React from 'react';
import { ColorValue, ViewStyle } from 'react-native';
import type { ImageSource } from 'react-native/Libraries/Image/ImageSource';
type Event = Readonly<{
nativeEvent: {
value: number;
};
}>;
export interface Props {
value: number;
minimumValue: number;
maximumValue: number;
step: number;
minimumTrackTintColor: ColorValue;
maximumTrackTintColor: ColorValue;
thumbTintColor: ColorValue;
thumbStyle: ViewStyle;
style: ViewStyle;
inverted: boolean;
disabled: boolean;
trackHeight: number;
thumbSize: number;
thumbImage?: ImageSource;
onRNCSliderSlidingStart: (event: Event) => void;
onRNCSliderSlidingComplete: (event: Event) => void;
onRNCSliderValueChange: (event: Event) => void;
}
declare const RCTSliderWebComponent: React.ForwardRefExoticComponent>;
export default RCTSliderWebComponent;