import type { VcCallbackPropertyFunction, VcComponentInternalInstance, VcComponentPublicInstance, VcReadyObject } from 'casc-cesium/es/utils/types'; export declare const tilesetGraphicsProps: { maximumScreenSpaceError: { type: import("vue").PropType>; default: number; }; uri: import("vue").PropType | Cesium.Resource>; show: { type: import("vue").PropType; default: boolean; }; }; declare const _default: import("vue").DefineComponent<{ maximumScreenSpaceError: { type: import("vue").PropType>; default: number; }; uri: import("vue").PropType | Cesium.Resource>; show: { type: import("vue").PropType; default: boolean; }; }, () => import("vue").VNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { beforeLoad: (instance: VcComponentInternalInstance) => boolean; ready: (readyObj: VcReadyObject) => boolean; unready: (e: any) => boolean; destroyed: (instance: VcComponentInternalInstance) => boolean; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; default: number; }; uri: import("vue").PropType | Cesium.Resource>; show: { type: import("vue").PropType; default: boolean; }; }>> & { onBeforeLoad?: (instance: VcComponentInternalInstance) => any; onReady?: (readyObj: VcReadyObject) => any; onUnready?: (e: any) => any; onDestroyed?: (instance: VcComponentInternalInstance) => any; }, { show: boolean; maximumScreenSpaceError: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; }>; export default _default; export declare type VcGraphicsTilesetProps = { /** * A boolean Property specifying the visibility of the tileset. * Default value: true */ show?: boolean | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * A string or Resource Property specifying the URI of the tileset. */ uri?: number | Cesium.CallbackProperty | VcCallbackPropertyFunction; /** * Triggers before the VcGraphicsTileset is loaded. */ onBeforeLoad?: (instance: VcComponentInternalInstance) => void; /** * Triggers when the VcGraphicsTileset is successfully loaded. */ onReady?: (readyObject: VcReadyObject) => void; /** * Triggers when the component load failed. */ onUnready?: (e: any) => void; /** * Triggers when the VcGraphicsTileset is destroyed. */ onDestroyed?: (instance: VcComponentInternalInstance) => void; /** * Triggers when a property or sub-property is changed or modified. */ onDefinitionChanged?: (property: Cesium.Property) => void; }; export declare type VcGraphicsTilesetRef = VcComponentPublicInstance;