import type { NodeExecutionInfo } from '../types/index.js'; interface Props { nodeId?: string; executionInfo?: NodeExecutionInfo; position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; size?: 'sm' | 'md' | 'lg'; showDetails?: boolean; } declare const NodeStatusOverlay: import("svelte").Component; type NodeStatusOverlay = ReturnType; export default NodeStatusOverlay;