import { RawLocationReference } from './RawLocationReference'; import { GeoCoordinates } from '../../map/GeoCoordinates'; export declare class RawPolygonLocationReference extends RawLocationReference { /** The corner list. */ protected _corners: Array; getCornerPoints(): GeoCoordinates[]; static fromPolygonValues(id: string, corners: Array): RawPolygonLocationReference; }