import { Line3, Vector3 } from 'three';
export interface ClosestPoints {
    pointOnLine1: Vector3;
    pointOnLine2: Vector3;
}
export declare function closestPointsBetweenLines(line1: Line3, line2: Line3, target: ClosestPoints): void;
