import { IPoint } from '../point';
import { ILine } from './i-line';
export declare class LineExtensions {
    static initialize(point1?: IPoint, point2?: IPoint): ILine;
    static copy(line: ILine): ILine;
    static hypotenuse(line: ILine): number;
}
