/** * Chat controller hook — coordinates all chat-related operations. */ export default function useChatController(): { handleSubmit: (data: import("../../../..").IAgentScopeRuntimeWebUIInputData) => void; handleCancel: () => void; };