import type { CSSProperties } from "react"; export interface VouchCard { children?: any; style?: CSSProperties } declare global { // HTML interface HTMLElementTagNameMap { 'vouch-card': VouchCard; } // React namespace JSX { interface IntrinsicElements { 'vouch-card': VouchCard; } } } // Preact declare namespace preact.JSX { interface IntrinsicElements { 'vouch-card': VouchCard; } }