/** * Check if a point is inside of a polygon */ import { IPoint } from './i-point'; export declare function inPolygon(point: IPoint, polygon: IPoint[]): boolean;