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