import { type NumberInputProps } from '@chakra-ui/react'; import { SizeType, InputVariant } from '../../../types'; import React from 'react'; interface Props extends NumberInputProps { variant?: InputVariant; size?: SizeType; } declare const Component: React.ForwardRefExoticComponent>; export { Component as NumberInput, type Props as NumberInputProps, };