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