import type { ICommandMenuAction } from './ICommandMenuAction.js'; import { LitElement } from 'lit'; import '../visually-hidden/VisuallyHidden.js'; /** * Command Menu Action displays a single action that can be executed by the user. For usage examples, please see Command Menu component. * * @status internal */ export default class CommandMenuAction extends LitElement { static styles: import("lit").CSSResult; private direction; command: ICommandMenuAction; selected: boolean; render(): import("lit").TemplateResult<1>; /** * Scroll to show element */ protected ensureInView(): void; private getIconName; private renderShortcut; } declare global { interface HTMLElementTagNameMap { 'nord-command-menu-action': CommandMenuAction; } }