import React, { type InputHTMLAttributes } from "react"; import type { FormFieldProps } from "../FormField/FormField"; export type RangeInputProps = { /** The step size for each change in the range input's value. */ hasError?: boolean; onSlideStart?: (e: React.FormEvent) => void; } & FormFieldProps & Omit, "type">; export declare const RangeInput: React.ForwardRefExoticComponent<{ /** The step size for each change in the range input's value. */ hasError?: boolean; onSlideStart?: (e: React.FormEvent) => void; } & FormFieldProps & Omit, "type"> & React.RefAttributes>;