/// <reference types="react" />
import { Point } from '.';
export interface LineElementProps {
    start: Point;
    end: Point;
}
export interface State {
}
export default function LineElement(props: LineElementProps): JSX.Element;
