import React from "react";
import { VictoryCommonPrimitiveProps } from "../victory-util/common-props";
export interface LineSegmentProps extends VictoryCommonPrimitiveProps {
    datum?: any;
    lineComponent?: React.ReactElement;
    x1?: number;
    x2?: number;
    y1?: number;
    y2?: number;
}
export declare const LineSegment: (initialProps: LineSegmentProps) => React.DetailedReactHTMLElement<any, HTMLElement>;
//# sourceMappingURL=line-segment.d.ts.map