/// <reference types="react" />
import type { TextInputProps } from '@spark-web/text-input';
import type { UseFloatInputProps } from './use-float-input';
export declare type FloatInputProps = UseFloatInputProps & Omit<TextInputProps, 'onChange' | 'value' | 'type' | 'inputMode'>;
export declare const FloatInput: import("react").ForwardRefExoticComponent<FloatInputProps & import("react").RefAttributes<HTMLInputElement>>;
