import '@shoelace-style/shoelace/dist/components/tooltip/tooltip.js'; import '@shoelace-style/shoelace/dist/components/icon/icon.js'; /** * Displays an RDF term (predicate) in a human-friendly way, using a provided label. The user can still expand the label * to the full URI to see the actual predicate. * * This will only show the predicate itself, not any value. If you want to display a value, use [pos-value](../pos-value) instead. */ export declare class PosPredicate { /** * The full URI of the predicate */ uri: string; /** * The human-readable label to show for this predicate */ label: string; expanded: boolean; render(): any; }