export interface VouchEmbedDialogue { vouchid: string; apikey: string; showcaption?: boolean; showwatermark?: boolean; autoplay?: boolean; questions?: string; displayname?: string; controls?: string; onclose?: svelte.JSX.MouseEventHandler; } declare global { // HTML interface HTMLElementTagNameMap { 'vouch-embed-dialogue': VouchEmbedDialogue; } // React namespace JSX { interface IntrinsicElements { 'vouch-embed-dialogue': VouchEmbedDialogue; } } } // Preact declare namespace preact.JSX { interface IntrinsicElements { 'vouch-embed-dialogue': VouchEmbedDialogue; } }