export interface VouchButton { active?: boolean; size?: 'small' | 'large'; rounded?: 'medium' | 'full'; weight?: 'light' | 'heavy'; } declare global { // HTML interface HTMLElementTagNameMap { 'vouch-button': VouchButton; } // React namespace JSX { interface IntrinsicElements { 'vouch-button': VouchButton; } } } // Preact declare namespace preact.JSX { interface IntrinsicElements { 'vouch-button': VouchButton; } }