import React from 'react';
type InputType = 'text' | 'password' | 'email' | 'number' | 'tel' | 'url' | 'search';
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
    type?: InputType;
    label?: string;
    error?: string;
    containerClassName?: string;
}
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
export default Input;
