import { default as React } from 'react';
import { EmailFormData } from '../../types/Email';
interface EmailInterfaceProps {
    isOpen?: boolean;
    showClose?: boolean;
    onClose?: () => void;
    formData: EmailFormData;
    onInputChange: (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
    isLoading: boolean;
    emailSent: boolean;
    onSendEmail: () => void;
    onSendAnother: () => void;
    conversationId: string | null;
    dealerEmail: string;
    className?: string;
    onMinimize?: () => void;
    onExpand?: () => void;
    showMinimize?: boolean;
    showExpand?: boolean;
    minimized?: boolean;
    onHeaderClick?: () => void;
    onQuickAction?: (actionId: string) => void;
    isGeneratingContent?: boolean;
    baseUrl?: string;
    enterpriseId?: string;
    mediaId?: string;
}
declare const EmailInterface: React.FC<EmailInterfaceProps>;
export default EmailInterface;
