import { type PinInputProps } from '@chakra-ui/react'; import { SizeType, InputVariant } from '../../../types'; interface Props extends PinInputProps { variant?: InputVariant; size?: SizeType; } declare function Component(props: Props): JSX.Element; export { Component as PinInput, type Props as PinInputProps, };