import { OrWidget } from "./or-widget"; import type { Asset, AssetQuery, Attribute, AttributeRef } from "@openremote/model"; import { WidgetSettings } from "./widget-settings"; import type { CSSResult } from "lit"; export declare abstract class OrAssetWidget extends OrWidget { protected loadedAssets: Asset[]; protected assetAttributes: [number, Attribute][]; protected _error?: string; static get styles(): CSSResult[]; protected fetchAssets(attributeRefs?: AttributeRef[]): Promise; protected queryAssets(assetQuery: AssetQuery): Promise; protected isAssetLoaded(assetId: string): boolean; protected isAttributeRefLoaded(attributeRef: AttributeRef): boolean; } export declare abstract class AssetWidgetSettings extends WidgetSettings { protected loadedAssets: Asset[]; protected fetchAssets(attributeRefs?: AttributeRef[]): Promise; protected queryAssets(assetQuery: AssetQuery): Promise; protected isAssetLoaded(assetId: string): boolean; protected isAttributeRefLoaded(attributeRef: AttributeRef): boolean; } //# sourceMappingURL=or-asset-widget.d.ts.map