import { default as React } from 'react'; import * as PrimitiveSlider from '@radix-ui/react-slider'; export declare const rootClassName = "teddy-slider"; /** ------------------------------------------------------------------------------------------------- * Slider * -----------------------------------------------------------------------------------------------*/ export type Variant = 'attention' | 'special' | 'neutral' | 'information' | 'success' | 'warning' | 'error'; type SliderProps = React.ComponentPropsWithoutRef; /** * A slider track that can display one or two draggable thumbs. */ declare const Slider: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { Slider }; export type { SliderProps };