import { __VumViewer } from 'vuesium'; import { ReturnVoid } from '../../shared'; import { Cartesian3, Entity } from 'cesium'; declare type Viewer = __VumViewer.VumViewer; export declare type LoadEvent = { viewer: Viewer; }; export declare type OnLoad = (e: LoadEvent) => ReturnVoid; export declare type Feature = { position: Cartesian3; id: string | number; attributes: Record; entity: Entity; }; declare const _default: {}; export default _default;