import { DatabaseItemType } from '@awhere/interfaces';
import StructuredCollection from '../_BaseClass/StructuredCollection';
export default class FeatureCollection extends StructuredCollection {
    static systemSchema: {
        geometry: {
            name: string;
            type: string;
            hidden: boolean;
            deletable: boolean;
            readonly: boolean;
            editable: boolean;
        };
    };
    get type(): import("@awhere/interfaces").ItemTypeChildren.databaseItem;
    get subtype(): DatabaseItemType;
    constructor(props?: Partial<FeatureCollection>);
}
