import { PolygonData } from '../polygon/polygon-data';
import { PointData } from './point-data';
export declare class Point {
    readonly x: number;
    readonly y: number;
    constructor({ x, y }: PointData);
    private calc;
    private haveIntersectionPoint;
    private getIntersectionPoint;
    private createIntersectionLines;
    isInPolygon(polygon: PolygonData): boolean;
}
