import React from 'react'; export type RangeProps = { tooltip?: boolean; tooltipFormatter?: (value: number) => string; max?: number; a11yStep?: number; name?: string; } & React.HTMLProps; export declare const Range: ({ className, onChange, value: startValue, max, onKeyDown, a11yStep, tooltip, tooltipFormatter, name, id, ...props }: RangeProps) => import("react/jsx-runtime").JSX.Element;