import { vec } from "mafs"; import * as React from "react"; type Props = { tail: vec.Vector2; tip: vec.Vector2; color?: string; strokeWidth?: number; style?: React.SVGProps["style"]; testId?: string; }; export declare function Vector(props: Props): React.JSX.Element; export {};