/** * TerminalInteractivePanelRestty Component. * * Interactive terminal panel using restty's GPU-accelerated renderer. * Mirrors TerminalInteractivePanel's UI (Ghostty chrome, action bar, * footer) but uses restty for rendering and its own PTY transport * instead of useTerminalWebSocket. * * Internally composes `useTerminal` hook with `TerminalActionBar`, * `TerminalStatusBar`, and `TerminalDisconnectedOverlay` atoms. * * @module components/devenv/terminal/panel/interactive-restty */ import type { ITerminalInteractivePanelProps, ITerminalInteractivePanelRef } from './TerminalInteractivePanel.types'; /** * TerminalInteractivePanelRestty Component. * * GPU-accelerated interactive terminal combining: * - TerminalPanelChrome (Ghostty glassmorphism shell) * - restty with WebGPU/WebGL2 rendering * - Composable action bar (clear, settings, split, font controls) * - Composable status bar (connection, dimensions, font size) * - Disconnected overlay with reconnect button * * @example * ```tsx * console.log('Connected')} * /> * ``` */ export declare const TerminalInteractivePanelRestty: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=TerminalInteractivePanelRestty.d.ts.map