import { type CSSProperties, type InputHTMLAttributes } from 'react'; type VolumeControlProps = { value?: number; defaultValue?: number; onChange?: (value: number) => void; min?: number; max?: number; step?: number; label?: string; disabled?: boolean; name?: string; id?: string; className?: string; style?: CSSProperties; inputProps?: Omit, 'aria-label' | 'className' | 'disabled' | 'id' | 'max' | 'min' | 'name' | 'onChange' | 'step' | 'style' | 'type' | 'value'>; }; declare const VolumeControl: ({ value, defaultValue, onChange, min, max, step, label, disabled, name, id, className, style, inputProps, }: VolumeControlProps) => import("react/jsx-runtime").JSX.Element; export { VolumeControl }; export type { VolumeControlProps };