import { ReactElement } from "react"; import { BaseInputProps } from "../../BaseInput/BaseInput"; type BaseInputExposedProps = Omit; export interface EmailBaseInputProps extends BaseInputExposedProps { /** * To disable the action button. * * @default false * @memberof EmailBaseInputProps * @example * */ disableAction?: boolean; } /** * A Email Input component is used for input of the type Email. * * It has an ActionButton which sends an email to the specified address using "mailto:" link. * * Extends props of BaseInput. * * A reference to the input element is provided as the `ref` prop. * For specific input types make sure to use the corresponding input component. */ export declare const EmailBaseInput: ({ fieldSize, disabled, "data-testid": dataTestId, isInvalid, onChange, disableAction, ref, ...rest }: EmailBaseInputProps) => ReactElement; export {};