import * as lit_html from 'lit-html'; import { LitElement } from 'lit'; import { J as JSXCustomElement } from '../../jsx-custom-element-C8UWRHYg.js'; interface IconAttributes { variant: 'default' | 'circle'; label: string; } declare class Icon extends LitElement { variant?: IconAttributes['variant']; label: IconAttributes['label']; render(): lit_html.TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dmd-icon': IconAttributes; } } declare module 'react' { namespace JSX { interface IntrinsicElements { 'dmd-icon': JSXCustomElement; } } } export { Icon, type IconAttributes };