import { layout } from '../../const'; import { ComponentProps } from 'react'; type Props = { error?: boolean; characters?: 2 | 3 | 4 | 5 | 10 | 20; width?: keyof typeof layout; } & ComponentProps<'input'>; declare const Input: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export default Input;