import { J as JSXCustomElement } from '../../jsx-custom-element-C8UWRHYg.js'; interface LinkAttributes { variant?: 'underline' | 'no-underline'; } declare global { interface HTMLElementTagNameMap { 'dmd-link': LinkAttributes; } } declare module 'react' { namespace JSX { interface IntrinsicElements { 'dmd-link': JSXCustomElement; } } } export type { LinkAttributes };