interface Props { value: number; onChange: (value: number) => void; min?: number; max?: number; step: number; orientation?: 'horizontal' | 'vertical'; trackColor?: string; rangeColor?: string; disabled?: boolean; name?: string; } export declare const Slider: (props: Props) => import("react/jsx-runtime").JSX.Element; export {};