/** * @license * Copyright 2025 Qwen * SPDX-License-Identifier: Apache-2.0 */ import type { PlanResultDisplay } from '@aetherai/aether-core'; import type React from 'react'; interface PlanSummaryDisplayProps { data: PlanResultDisplay; availableHeight?: number; childWidth: number; } export declare const PlanSummaryDisplay: React.FC; export {};