import React from 'react'; import { PortInfo } from '../utils/portUtils.js'; interface PortListProps { ports: PortInfo[]; loading: boolean; onKill: (port: PortInfo) => void; onRefresh: () => void; onSelectingChange: (isSelecting: boolean) => void; selectedIndex: number; onSelectedIndexChange: (index: number) => void; } declare const PortList: React.FC; export default PortList; //# sourceMappingURL=PortList.d.ts.map