#### Describe the issue and the actual behavior If I use "skipLibCheck": true in the tsconfig.json I get ts error that namespace 'JSX' cannot found. In React 19 the namespace 'JSX' is not global anymore. `export default function PatternFormat<BaseType = InputAttributes>(props: PatternFormatProps<BaseType>): JSX.Element;` `export default function NumericFormat<BaseType = InputAttributes>(props: NumericFormatProps<BaseType>): JSX.Element;` #### Describe the expected behavior I would expect that 'React.JSX' will be used instead of 'JSX'.