import { CSSProperties } from "react"; export interface VouchPersona { size?: number; src?: string; alt?: string; name?: string; companyname?: string; style?: CSSProperties } declare global { // HTML interface HTMLElementTagNameMap { 'vouch-persona': VouchPersona; } // React namespace JSX { interface IntrinsicElements { 'vouch-persona': VouchPersona; } } } // Preact declare namespace preact.JSX { interface IntrinsicElements { 'vouch-persona': VouchPersona; } }