import { LitElement } from 'lit'; /** * Icon component for displaying SVG icons * * @slot - Default slot for custom SVG content * * @csspart icon - The icon container */ export declare class UIIcon extends LitElement { static styles: import("lit").CSSResult; name: string; size: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; label: string; decorative: boolean; private icons; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'ui-icon': UIIcon; } } //# sourceMappingURL=icon.d.ts.map