import { InputFieldProps } from "./InputField";
/**
 * Email input props
 */
export type EmailInputProps = Omit<InputFieldProps, "type"> & {};
/**
 * Email input
 * @param props Props
 */
export declare function EmailInput(props: EmailInputProps): import("react/jsx-runtime").JSX.Element;
