/** * @license * Copyright 2025 Qwen * SPDX-License-Identifier: Apache-2.0 */ import type { AgentResultDisplay, Config } from '@aetherai/aether-core'; import React from 'react'; export type DisplayMode = 'compact' | 'default' | 'verbose'; export interface AgentExecutionDisplayProps { data: AgentResultDisplay; availableHeight?: number; childWidth: number; config: Config; } /** * Component to display subagent execution progress and results. * This is now a pure component that renders the provided SubagentExecutionResultDisplay data. * Real-time updates are handled by the parent component updating the data prop. */ export declare const AgentExecutionDisplay: React.FC;