import { J as JSXCustomElement } from '../../jsx-custom-element-C8UWRHYg.js'; interface ListAttributes { variant?: 'unstyled' | 'icon'; spacing?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'fluid-sm' | 'fluid' | 'fluid-lg'; } declare global { interface HTMLElementTagNameMap { 'dmd-list': ListAttributes; } } declare module 'react' { namespace JSX { interface IntrinsicElements { 'dmd-list': JSXCustomElement; } } } export type { ListAttributes };