/**
 * Orthogonal distance of a point to a plane, the distance is positive when the point lies above the plane and negative when the point is below
 * @param {number} x Reference point, x coordinate
 * @param {number} y Reference point, y coordinate
 * @param {number} z Reference point, z coordinate
 * @param {number} normal_x
 * @param {number} normal_y
 * @param {number} normal_z
 * @param {number} plane_offset
 * @returns {number}
 */
export function v3_distance_above_plane(x: number, y: number, z: number, normal_x: number, normal_y: number, normal_z: number, plane_offset: number): number;
//# sourceMappingURL=v3_distance_above_plane.d.ts.map