import type { ReactNode } from 'react'; import { type InputBoxProps } from '../InputBox'; export type EmailInputProps = Omit & { addon?: ReactNode; error?: string; }; declare const EmailInput: import("react").ForwardRefExoticComponent & { addon?: ReactNode; error?: string; } & import("react").RefAttributes>; export default EmailInput; //# sourceMappingURL=EmailInput.d.ts.map