import { JSX } from "solid-js"; interface TextProps { sourceX: number; sourceY: number; targetX: number; targetY: number; label: string; style?: JSX.CSSProperties; bgStyle?: JSX.CSSProperties; } export default function EdgeText(props: TextProps): JSX.Element; export {};