import type { ViewStyle } from 'react-native'; interface SliderProps { value?: number; min?: number; max?: number; step?: number; label?: string; disabled?: boolean; style?: ViewStyle; _tokens?: Record; onChange?: (value: number) => void; testID?: string; } export declare function Slider({ value, min, max, step, label, disabled, style, _tokens, onChange, testID }: SliderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=slider.d.ts.map