import React from "react"; import type { ViewPort } from "react-zoomable-ui"; import type { EdgeProps } from "reaflow"; type QueryRoot = { querySelector: (selector: string) => Element | null; }; type CustomEdgeProps = EdgeProps & { viewPort: ViewPort | null; edgeTargetById: Map; hostElement: QueryRoot | null; }; export declare const CustomEdge: React.MemoExoticComponent<({ viewPort, edgeTargetById, hostElement, ...props }: CustomEdgeProps) => import("react/jsx-runtime").JSX.Element>; export {}; //# sourceMappingURL=CustomEdge.d.ts.map