import { J as JSXCustomElement } from '../../jsx-custom-element-C8UWRHYg.js'; interface InputAttributes { state?: 'valid' | 'invalid'; } declare global { interface HTMLElementTagNameMap { 'dmd-input': InputAttributes; } } declare module 'react' { namespace JSX { interface IntrinsicElements { 'dmd-input': JSXCustomElement; } } } export type { InputAttributes };