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