@restnfeel/agentc-starter-kit
Version:
한국어 기업용 CMS 모듈 - Task Master AI와 함께 빠르게 웹사이트를 구현할 수 있는 재사용 가능한 컴포넌트 시스템
24 lines • 960 B
TypeScript
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