import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { SliderProps } from './interfaces.js'; interface InternalSliderProps extends SliderProps, InternalBaseComponentProps { style?: SliderProps['style']; } export default function InternalSlider({ value, min, max, onChange, step, disabled, readOnly, ariaLabel, ariaDescription, referenceValues, tickMarks, hideFillLine, valueFormatter, i18nStrings, style, __internalRootRef, ...rest }: InternalSliderProps): JSX.Element; export {};