import { WebMapItemType } from '@awhere/interfaces';
import ItemBase from '../../Item/ItemBase';
export default class WebMapItem extends ItemBase {
    get type(): import("@awhere/interfaces").ItemTypeChildren.webMapItem;
    protected _subtype: WebMapItemType | keyof typeof WebMapItemType;
    get subtype(): WebMapItemType | keyof typeof WebMapItemType;
    set subtype(value: WebMapItemType | keyof typeof WebMapItemType);
}
