import { Thing } from '@pod-os/core'; import { ResourceAware, ResourceEventEmitter } from '../events/ResourceAware'; /** * Displays a human-readable label of the resource, provided by [Thing.label()](https://pod-os.org/reference/core/classes/thing/#label) */ export declare class PosLabel implements ResourceAware { resource: Thing; subscribeResource: ResourceEventEmitter; componentWillLoad(): void; receiveResource: (resource: Thing) => void; render(): string; }