import { ReadGeomValue, ReadResource } from '@knora/api';
/**
 * Represents a region.
 * Contains a reference to the resource representing the region and its geometries.
 */
export declare class Region {
    readonly regionResource: ReadResource;
    /**
     *
     * @param {ReadResource} regionResource a resource of type Region
     */
    constructor(regionResource: ReadResource);
    /**
     * Get all geometry information belonging to this region.
     *
     * @returns {ReadGeomValue[]}
     */
    getGeometries(): ReadGeomValue[];
}
