export interface VouchEmbedJumbo { vouchid: string; apikey: string; showname?: boolean; showlogo?: boolean; showcaption?: boolean; showcontrol?: boolean; showwatermark?: boolean; autoplay?: boolean; mobile?: boolean; questions?: string; responsive?: boolean; displayname?: string; controls?: string; } declare global { // HTML interface HTMLElementTagNameMap { 'vouch-embed-jumbo': VouchEmbedJumbo; } // React namespace JSX { interface IntrinsicElements { 'vouch-embed-jumbo': VouchEmbedJumbo; } } } // Preact declare namespace preact.JSX { interface IntrinsicElements { 'vouch-embed-jumbo': VouchEmbedJumbo; } }