import type { VcComponentInternalInstance, VcReadyObject, VcViewerProvider } from 'vue-cesium/es/utils/types'; import type { WatchStopHandle } from 'vue'; import { logger } from 'vue-cesium/es/utils'; export default function (props: any, { emit, attrs }: { emit: any; attrs: any; }, vcInstance: VcComponentInternalInstance): { $services: VcViewerProvider; load: () => Promise; unload: () => Promise; reload: () => Promise; creatingPromise: Promise; transformProp: (prop: any, value: any, childProps?: any) => any; transformProps: (props: T, childProps?: any) => T; unwatchFns: WatchStopHandle[]; setPropsWatcher: (register: any) => void; logger: typeof logger; getServices: () => any; }; //# sourceMappingURL=index.d.ts.map