import { FoundationElement } from '@ni/fast-foundation'; /** * The base class for Mention View Node */ export declare class RichTextMentionView extends FoundationElement { /** * Stores the unique URL of the mentioned user matching the pattern * * @public * HTML Attribute: mention-href */ mentionHref?: string; /** * Stores the value of the rendering label * * @public * HTML Attribute: mention-label */ mentionLabel?: string; }