import { default as React } from 'react'; import { SliderProps as AriaSliderProps } from 'react-aria-components'; interface SliderProps extends Omit { leftLabel: string; rightLabel: string; formatter?: (value: number) => string; callback: (value: number) => void; theme?: { sliderColor: string; trackColor: string; thumbColor: string; labelColor: string; }; } declare function Slider({ leftLabel, rightLabel, formatter, callback, theme, ...props }: Readonly): React.JSX.Element; export default Slider;