import { RelationshipArrowType } from '@likec4/core/types'; import { SVGProps } from 'react'; export declare const EdgeMarkers: { Arrow: (props: SVGProps) => import("react/jsx-runtime").JSX.Element; Crow: (props: SVGProps) => import("react/jsx-runtime").JSX.Element; OArrow: (props: SVGProps) => import("react/jsx-runtime").JSX.Element; Open: (props: SVGProps) => import("react/jsx-runtime").JSX.Element; Diamond: (props: SVGProps) => import("react/jsx-runtime").JSX.Element; ODiamond: (props: SVGProps) => import("react/jsx-runtime").JSX.Element; Dot: (props: SVGProps) => import("react/jsx-runtime").JSX.Element; ODot: (props: SVGProps) => import("react/jsx-runtime").JSX.Element; }; export type EdgeMarkerType = keyof typeof EdgeMarkers; export declare function arrowTypeToMarker(arrowType?: RelationshipArrowType): EdgeMarkerType | undefined;