import { LitElement } from 'lit'; import { type IconName } from './icons.js'; /** * @hidden * Custom icon component that renders collections of pre-registered SVG icons. * * @element igc-icon-component */ export default class IgcIconDMComponent extends LitElement { static readonly tagName = "igc-icon-component"; static styles: import("lit").CSSResult[]; static register(): void; /** * The name of the icon to draw. */ name: IconName | ''; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-icon-component': IgcIconDMComponent; } }