import { J as JSXCustomElement } from '../../jsx-custom-element-C8UWRHYg.js'; interface FormGroupAttributes { orientation?: 'horizontal' | 'vertical'; } declare global { interface HTMLElementTagNameMap { 'dmd-form-group': FormGroupAttributes; } } declare module 'react' { namespace JSX { interface IntrinsicElements { 'dmd-form-group': JSXCustomElement; } } } export type { FormGroupAttributes };