/// import { View, ViewStyle } from 'react-native'; import { HandlerRef } from './useNodesRef'; export interface SliderProps { min?: number; max?: number; step?: number; disabled?: boolean; value?: number; color?: string; 'selected-color'?: string; activeColor?: string; backgroundColor?: string; 'block-size'?: number; 'block-color'?: string; name?: string; bindchange?: (event: any) => void; catchchange?: (event: any) => void; bindchanging?: (event: any) => void; catchchanging?: (event: any) => void; style?: ViewStyle & Record; 'enable-offset'?: boolean; 'enable-var'?: boolean; 'external-var-context'?: Record; 'parent-font-size'?: number; 'parent-width'?: number; 'parent-height'?: number; } declare const Slider: import("react").ForwardRefExoticComponent>>; export default Slider;