import '@xyflow/svelte/dist/style.css'; interface Props { sourceData: Record; targetData: Record; edgeStyle?: string; edgeClass?: string; edgeMarkerColor?: string; edgeMarkerSize?: { width: number; height: number; }; sourceHandleId?: string; targetHandleId?: string; } declare const EdgeDecorator: import("svelte").Component; type EdgeDecorator = ReturnType; export default EdgeDecorator;