import { ModalProps } from '@mantine/core'; import { AgentMessage } from '@/types/models/agent-chat-message'; type AgentChatPopupSize = ModalProps['size'] | '2xl'; export interface AgentChatPopupProps { opened: boolean; onClose: () => void; message?: AgentMessage; isAssistantStreaming?: boolean; size?: AgentChatPopupSize; zIndex?: number; layoutTop?: number | string; layoutHeight?: number | string; layoutLeftOffset?: number | string; layoutRightOffset?: number | string; hostContainerSelector?: string; panelBorderRadius?: number | string; } export declare function AgentChatPopup({ opened, onClose, message, isAssistantStreaming, size, zIndex, layoutTop, layoutHeight, layoutLeftOffset, layoutRightOffset, hostContainerSelector, panelBorderRadius, }: AgentChatPopupProps): import("react").ReactPortal | null; export {};