/** * TerminalDisplay — Readonly GPU-rendered terminal for ANSI content. * * Uses restty directly (not xterm) for GPU-accelerated rendering of * ANSI-formatted text without PTY connection. Content is written via * `restty.sendInput(data, "pty")` which feeds text to the WASM terminal * engine for parsing and rendering. * * Optionally wrapped in TerminalPanelChrome glassmorphism shell. * * @module components/devenv/terminal/TerminalDisplay */ import type { ITerminalDisplayProps, ITerminalDisplayRef } from './TerminalDisplay.types'; /** * TerminalDisplay — Readonly restty terminal for displaying ANSI content. * * @example * ```tsx * * ``` * * @example * ```tsx * // Without chrome shell * * ``` * * @example * ```tsx * // With imperative handle * const ref = useRef(null); * ref.current?.write("Additional output\r\n"); * ref.current?.clear(); * ``` */ export declare const TerminalDisplay: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=TerminalDisplay.d.ts.map