import type { NodePort } from '../types/index.js'; import type { EditablePortMapping } from '../utils/nodeSwap.js'; interface Props { mapping: EditablePortMapping; availablePorts: NodePort[]; usedPortIds: Set; onUpdate: (newPortId: string | null) => void; onReset: () => void; } declare const PortMappingRow: import("svelte").Component; type PortMappingRow = ReturnType; export default PortMappingRow;