import { LitElement } from 'lit'; /** * Desktop shortcut primitive with an icon slot and wrapped label. * * @slot icon - Icon image or `w1c-icon`. * @slot - Desktop icon label. * @csspart control - The clickable shortcut control. * @csspart icon - The icon slot wrapper. * @csspart label - The label wrapper. */ export declare class W1cDesktopIcon extends LitElement { href: string; label: string; selected: boolean; render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-desktop-icon': W1cDesktopIcon; } }