export interface VouchEmbedThumbnail { vouchid: string; apikey: string; showcaption?: boolean; showwatermark?: boolean; autoplay?: boolean; questions?: string; displayname?: string; shape?: '' | 'square' | 'circle' | 'portrait'; responsive?: boolean; src: string; alt?: string; controls?: string; } declare global { // HTML interface HTMLElementTagNameMap { 'vouch-embed-thumbnail': VouchEmbedThumbnail; } // React namespace JSX { interface IntrinsicElements { 'vouch-embed-thumbnail': VouchEmbedThumbnail; } } } // Preact declare namespace preact.JSX { interface IntrinsicElements { 'vouch-embed-thumbnail': VouchEmbedThumbnail; } }