import type { ComponentType } from 'react'; import { type TerminalViewerProps } from './TerminalViewer'; export interface TerminalsPanelProps { /** Override the terminal renderer (defaults to web TerminalViewer). */ Viewer?: ComponentType; /** Keep previously viewed terminals mounted while switching or collapsing. */ preserveViewerSessions?: boolean; } export declare const TerminalsPanel: import("react").NamedExoticComponent; /** Returns the terminal that is currently visible in the panel. */ export declare function getActiveTerminal(terminals: T[], activeTabId: string | null): T | undefined; //# sourceMappingURL=TerminalsPanel.d.ts.map