import type { EdgeI } from "../../types"; interface StraightEdgeProps { edge: EdgeI; } export default function StraightEdge(props: StraightEdgeProps): import("solid-js").JSX.Element; export {};