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