import { Thing } from '@pod-os/core'; import { ResourceAware, ResourceEventEmitter } from '../events/ResourceAware'; /** * Shows a single value linked to the resource using the given predicate. * The value is determined by [Thing.anyValue()](https://pod-os.org/reference/core/classes/thing/#anyvalue) */ export declare class PosValue implements ResourceAware { /** * URI of the predicate to get the value from */ predicate: string; resource: Thing; subscribeResource: ResourceEventEmitter; componentWillLoad(): void; receiveResource: (resource: Thing) => void; render(): null; }