import type { ControlInteractionOptions } from './control-interaction.js'; import type { RangeSliderValue } from './types.js'; export interface Props { value?: RangeSliderValue; min?: number; max?: number; step?: number; label?: string; minLabel?: string; maxLabel?: string; unit?: string; disabled?: boolean; name?: string; interaction?: ControlInteractionOptions | false; onvaluechange?: (value: RangeSliderValue) => void; class?: string; } declare const RangeSlider: import("svelte").Component; type RangeSlider = ReturnType; export default RangeSlider; //# sourceMappingURL=RangeSlider.svelte.d.ts.map