import * as React from "react"; import type { vec } from "mafs"; import type { SVGProps } from "react"; type Props = { start: vec.Vector2; end: vec.Vector2; style?: SVGProps["style"]; className?: string; testId?: string; }; export declare function SVGLine(props: Props): React.JSX.Element; export {};