/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type React from 'react'; import type { AnsiOutput } from '@3-/qwen-code-core'; interface AnsiOutputProps { data: AnsiOutput; availableTerminalHeight?: number; } export declare const AnsiOutputText: React.FC; export {};