import React from 'react'; import type { IPty } from '@lydell/node-pty'; import type { PanelType } from '../types/index.js'; interface TerminalPanelProps { type: PanelType; title: string; isActive: boolean; cwd: string; autoStart?: boolean; width?: string; height?: string; onPtyReady?: (pty: IPty) => void; } declare const TerminalPanel: React.FC; export default TerminalPanel; //# sourceMappingURL=TerminalPanel.d.ts.map