declare module "@chriswitko/app-store-icon" { // Extend JSX Intrinsic Elements declare global { namespace JSX { interface IntrinsicElements { "app-store-icon": React.DetailedHTMLProps< React.HTMLAttributes, HTMLElement >; } } } // Define the AppStoreIcon class export class AppStoreIcon extends HTMLElement {} }