import type { DOMAttributes } from 'react'; import type { DefineComponent } from 'vue'; import type { BaseEmbedProps } from '../baseEmbedProps'; export type AdyenInvitedDecisionMakerProps = BaseEmbedProps; declare module 'preact/jsx-runtime' { namespace JSX { interface IntrinsicElements { 'adyen-invited-decision-maker': AdyenInvitedDecisionMakerProps; } } } type CustomElement = Partial & { children: any; }>; declare global { namespace JSX { interface IntrinsicElements { 'adyen-invited-decision-maker': CustomElement; } } namespace preact.JSX { interface IntrinsicElements { 'adyen-invited-decision-maker': AdyenInvitedDecisionMakerProps; } } } declare module 'react/jsx-runtime' { namespace JSX { interface IntrinsicElements { 'adyen-invited-decision-maker': AdyenInvitedDecisionMakerProps; } } } declare module 'vue' { interface GlobalComponents { 'adyen-invited-decision-maker': DefineComponent; } } export {};