/** * Terminal · interactive router sub-entry. * * Exports `TerminalInteractivePanel`, the thin router that lazy-loads the * xterm/restty/wterm implementations based on settings. The router file * itself uses `lazy()` so importing this entry does NOT eagerly pull * peer deps — they only resolve once the matching renderer is selected * at runtime. * * Still, every renderer's peer deps must be installed where it might * be used. Prefer importing each renderer's sub-entry directly when * you only need one. * * @module @mks2508/mks-ui/react/blocks/Terminal/interactive */ export { TerminalInteractivePanel } from './panel/TerminalInteractivePanel'; export type { ITerminalInteractivePanelProps, ITerminalInteractivePanelRef, } from './panel/TerminalInteractivePanel.types'; //# sourceMappingURL=interactive.d.ts.map