interface InputProps {
    label?: string;
    name: string;
    placeholder?: string;
    defaultValue?: string;
    disabled?: boolean;
}
declare const Email: React.FC<InputProps>;
export default Email;
