import React from 'react'; import { WidthProps } from 'styled-system'; export type InputTypes = 'text' | 'email' | 'password' | 'number' | 'tel'; export interface InputProps extends Omit, 'width' | 'value'>, WidthProps { type?: InputTypes; onReset?: () => void; isFocused?: boolean; value?: string; defaultValue?: string; error?: boolean; className?: string; hideReset?: boolean; } declare const Input: React.ForwardRefExoticComponent>; export default Input;