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