import { Thing } from '@pod-os/core'; import { ResourceAware, ResourceEventEmitter } from '../events/ResourceAware'; /** * Displays a human-readable label of the resource, as provided by [Thing.label()](https://pod-os.org/reference/core/classes/thing/#label). * * Re-renders when data in the store changes using [Thing.observeLabel()](https://pod-os.org/reference/core/classes/thing/#observeLabel). */ export declare class PosLabel implements ResourceAware { label: string; subscribeResource: ResourceEventEmitter; private readonly disconnected$; componentWillLoad(): void; receiveResource: (resource: Thing) => void; render(): string; disconnectedCallback(): void; }