export type ImgLoading = 'lazy' | 'eager'; export type VouchBrandLogo = { src?: string; alt?: string; name?: string; size?: number; loading?: ImgLoading; }; declare global { // HTML interface HTMLElementTagNameMap { 'vouch-brand-logo': VouchBrandLogo; } // React namespace JSX { interface IntrinsicElements { 'vouch-brand-logo': VouchBrandLogo; } } } // Preact declare namespace preact.JSX { interface IntrinsicElements { 'vouch-brand-logo': VouchBrandLogo; } }