import { InputProps } from './Input'; export type NumberProps = InputProps & { step?: number; }; export declare const NumberInput: ({ step, ...rest }: NumberProps) => import("react/jsx-runtime").JSX.Element;