import * as React from 'react'; import { SliderSteps } from './SliderSteps'; import { SliderValue } from './SliderValue'; declare const StyledTrack: React.ForwardRefExoticComponent, "theme"> & { theme?: "light" | "tonal" | undefined; } & { as?: React.ElementType; }>; declare const StyledSlider: React.ForwardRefExoticComponent, never> & { as?: React.ElementType; }>; export type SliderProps = React.ComponentProps & Pick, 'theme'>; type SliderType = ReturnType> & { Value: typeof SliderValue; Steps: typeof SliderSteps; }; export declare const Slider: SliderType; export {};