import type { AgentChatProps } from './AgentChatProps';
/**
* AgentChat component that provides chat functionality with LLM integration
*
* This component internally manages messages, participants, and task progress,
* and uses the provided LLM tools to generate responses via `LlmExecutionTools.callChatModel`.
*
* Note: There are multiple chat components:
* - `` renders chat as it is without any logic
* - `` connected to LLM Execution Tools of Promptbook
*
* @public exported from `@promptbook/components`
*/
export declare function AgentChat(props: AgentChatProps): import("react/jsx-runtime").JSX.Element;