import { LitElement, nothing } from 'lit'; import { type IconData, type W1cIconName } from '../icons/index.js'; /** * Inline SVG icon renderer for the bundled W1C icon set or trusted IconData. * * @csspart icon - The rendered SVG element. */ export declare class W1cIcon extends LitElement { name: W1cIconName | ''; label: string; icon?: IconData; render(): import("lit").TemplateResult<1> | typeof nothing; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-icon': W1cIcon; } }