import ItemBase from '../../Item/ItemBase';
export interface IWebMapProps {
    layerDefinition: any;
    webMapJSON: any;
}
export default class WebMap extends ItemBase {
    get type(): import("@awhere/interfaces").ItemTypeMain.webMap;
    protected _props: IWebMapProps;
    get props(): IWebMapProps;
    set props(value: IWebMapProps);
}
