import React from 'react'; interface TEmailInputInterface extends Omit, 'size' | 'type' | 'ref'> { value: string; size?: 'default' | 'small'; placeholder?: string; isIcon?: boolean; extraClass?: string; errorText?: string; checkValid?: (isValid: boolean) => void; onChange(e: React.ChangeEvent): void; } export declare const EmailInput: React.FC; export {};