import { type CSSProperties, type InputHTMLAttributes, type ReactNode } from 'react'; import { type CssLength } from '../../../utils/css'; type ElasticSliderProps = { value?: number; defaultValue?: number; onChange?: (value: number) => void; min?: number; max?: number; step?: number; label?: string; disabled?: boolean; name?: string; id?: string; width?: CssLength; height?: CssLength; radius?: CssLength; maxOverflow?: number; icon?: ReactNode; formatValue?: (value: number) => string; className?: string; style?: CSSProperties; inputProps?: Omit, 'aria-label' | 'aria-orientation' | 'aria-valuetext' | 'className' | 'disabled' | 'id' | 'max' | 'min' | 'name' | 'onChange' | 'onKeyDown' | 'step' | 'style' | 'type' | 'value'>; }; declare const ElasticSlider: ({ value, defaultValue, onChange, min, max, step, label, disabled, name, id, width, height, radius, maxOverflow, icon, formatValue, className, style, inputProps, }: ElasticSliderProps) => import("react/jsx-runtime").JSX.Element; export { ElasticSlider }; export type { ElasticSliderProps };