import type { CSSProperties } from "react"; export interface VouchResponsiveText { ref?: any; minfontsize?: number; maxfontsize?: number; children?: any; style?: CSSProperties } declare global { // HTML interface HTMLElementTagNameMap { 'vouch-responsive-text': VouchResponsiveText; } // React namespace JSX { interface IntrinsicElements { 'vouch-responsive-text': VouchResponsiveText; } } } // Preact declare namespace preact.JSX { interface IntrinsicElements { 'vouch-responsive-text': VouchResponsiveText; } }