import type { HTMLAttributes } from '../../../internal/html-attributes.js'; import type { PropsWithElement } from '../../../internal/props-with-element.js'; export interface SliderRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> { } declare const Range: import("svelte").Component; type Range = ReturnType; export default Range;