interface DesktopChatModalProps {
    onSendMessage: (message: string) => void;
    isTyping?: boolean;
    title?: string;
    placeholder?: string;
    className?: string;
    disabled?: boolean;
    showSuggestedQuestions?: boolean;
    suggestedQuestionsContext?: string;
    allowMinimize?: boolean;
    width?: string;
    height?: string;
    /** Whether to announce messages to screen readers */
    announceMessages?: boolean;
    /** Custom breakpoints for responsive design */
    breakpoints?: {
        mobile: string;
        tablet: string;
        desktop: string;
    };
}
export declare function DesktopChatModal({ onSendMessage, isTyping, title, placeholder, className, disabled, showSuggestedQuestions, suggestedQuestionsContext, allowMinimize, width, height, announceMessages, breakpoints, }: DesktopChatModalProps): import("react/jsx-runtime").JSX.Element;
export default DesktopChatModal;
//# sourceMappingURL=desktop-chat-modal.d.ts.map