declare type PointLike = { x: number; y: number; }; export declare const isInside: (polygon: PointLike[], point: PointLike) => number; export {};