import { DatabaseItemType } from '@awhere/interfaces';
import FeatureCollection from './FeatureCollection';
export default class PolygonCollection extends FeatureCollection {
    get type(): import("@awhere/interfaces").ItemTypeChildren.databaseItem;
    get subtype(): DatabaseItemType;
}
