import { J as JSXCustomElement } from '../../jsx-custom-element-C8UWRHYg.js'; interface ButtonAttributes { size?: 'sm' | 'md' | 'lg'; variant?: 'primary' | 'secondary' | 'text'; width?: 'full-width' | 'full-width-mobile' | 'square'; } declare global { interface HTMLElementTagNameMap { 'dmd-button': ButtonAttributes; } } declare module 'react' { namespace JSX { interface IntrinsicElements { 'dmd-button': JSXCustomElement; } } } export type { ButtonAttributes };