/// /** Utility functions for computations involving polygons and polylines. */ export declare class MigrationPoly { /** * Determines whether the given point falls within the polygon. * * @param point - The point to test. * @param polygon - The polygon to test. * @returns True if the point is inside the polygon. */ static containsLocation(point: google.maps.LatLng | google.maps.LatLngLiteral, polygon: google.maps.Polygon): boolean; /** * Determines whether the given point falls on or near a polyline, or the edge of a polygon, within a tolerance. * * @param point - The point to test. * @param poly - The polyline or polygon to test. * @param tolerance - Optional. The tolerance in degrees. Defaults to 10^-9. * @returns True if the point is on or near the polyline/polygon edge. */ static isLocationOnEdge(point: google.maps.LatLng | google.maps.LatLngLiteral, poly: google.maps.Polygon | google.maps.Polyline, tolerance?: number): boolean; }