import type { Types } from '@cornerstonejs/core'; import type { ClippingPlane } from './types'; export declare function computePlanePlaneIntersection(clippingPlane: ClippingPlane, viewPlaneNormal: Types.Point3, viewPlanePoint: Types.Point3): { direction: Types.Point3; point: Types.Point3; } | null;