import { RangeProps } from './Range.types'; export type RangeWithInputsProps = RangeProps & { minSign?: string; maxSign?: string; }; declare function RangeWithInputs(props: RangeWithInputsProps): import("react/jsx-runtime").JSX.Element; export default RangeWithInputs;