import type { InteractiveSwapState } from '../utils/nodeSwap.js'; import type { PortCompatibilityChecker } from '../utils/connections.js'; interface Props { interactiveState: InteractiveSwapState; checker: PortCompatibilityChecker | null; onConfirm: (state: InteractiveSwapState) => void; onCancel: () => void; onBack: () => void; } declare const SwapMappingEditor: import("svelte").Component; type SwapMappingEditor = ReturnType; export default SwapMappingEditor;