import { Billboard, BillboardCollection, Cartesian3 } from "cesium"; declare class AIcon { private id; private _position; private name; private offsetVert; private width; private height; private _url; private _show; private _offset; _instance: Billboard; collection: BillboardCollection; constructor({ id, show }?: { id?: number | undefined; show?: boolean | undefined; }); get url(): string; set url(value: string); get show(): boolean; set show(value: boolean); get offset(): number; set offset(value: number); get position(): Cartesian3; set position(value: Cartesian3); setCollection(collection: BillboardCollection): void; get info(): any; set info(value: any); load(): void; } export { AIcon };