import * as React from "react"; import type { Translation, SpaceAfter } from "@kiwicom/orbit-components/lib/common/common"; declare type Props = SpaceAfter & { size?: "small" | "normal"; name?: string; label?: Translation; inlineLabel?: boolean; value: string; placeholder?: string; prefix?: React.ReactNode; suffix?: React.ReactNode; tabIndex?: string; id?: string; autoComplete?: string; error: string; onChange: (ev: { value: string; error: string; }) => void; onFocus?: (ev: React.SyntheticEvent) => void | Promise; onBlur?: (ev: React.SyntheticEvent) => void | Promise; }; declare const InputEmail: ({ onChange, ...props }: Props) => JSX.Element; export default InputEmail;