/** * runsnative/jsx-react * Augments JSX.IntrinsicElements so all run-* elements type-check in React. * Import once from your entry point or a global .d.ts file. */ import 'react'; declare module 'react' { namespace JSX { interface IntrinsicElements { [elemName: `run-${string}`]: React.DetailedHTMLProps< React.HTMLAttributes, HTMLElement >; } } } export {};