/// interface Props { name: string; label?: string; placeholder?: string; } declare type NumberInputProps = JSX.IntrinsicElements['input'] & Props; export declare function NumberInput({ name, label, disabled, ...rest }: NumberInputProps): JSX.Element; export {};