import { EventEmitter } from '../../stencil-public-runtime'; import '@shoelace-style/shoelace/dist/components/icon/icon.js'; import { PodOS, Relation, Thing } from '@pod-os/core'; /** * Add a new relation from the current resource to another one */ export declare class PosAddRelation { el: HTMLElement; os: PodOS; resource: Thing; selectedTermUri: string; currentValue: string; /** * The relation has been added to the resource and successfully stored to the Pod. */ addedRelation: EventEmitter; /** * Something went wrong while adding the relation. */ error: EventEmitter; private valueInput; componentWillLoad(): Promise; onTermSelected(event: CustomEvent<{ uri: string; }>): void; save(): Promise; render(): any; }