import { Line } from '../Line';
import { Point } from '../Point';
/**
 * 判断点是否在线段上
 * @param p 点p
 * @param segment 线段
 */
export declare function onSegment(p: Point, segment: Line): boolean;
