import { UUIRefNodeElement } from '@umbraco-ui/uui-ref-node/lib'; /** * @element uui-ref-node-data-type * @fires {UUIRefEvent} open - fires when the ref title is clicked * @fires {UUIRefEvent} selected - fires when the ref is selected * @fires {UUIRefEvent} deselected - fires when the ref is deselected * @description - Component for displaying a reference to a Data Type node. */ export declare class UUIRefNodeDataTypeElement extends UUIRefNodeElement { protected fallbackIcon: string; /** * Alias * @type {string} * @attr * @default '' */ alias: string; protected renderDetail(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { 'uui-ref-node-data-type': UUIRefNodeDataTypeElement; } }