I have a react class component in which I need to use kendo Internationalization. Kendo internationalization is already setup and working with some functional components.
Unfortunately when I follow Kendo's docs examples for registerForIntl() I get the following typescript error:
Argument of type 'typeof DataGrid' is not assignable to parameter of type 'ComponentClass<{}, any>'.
Types of parameters 'props' and 'props' are incompatible.
Type '{}' is missing the following properties from type 'DataGridProps': data, total, columns
Any tips on how to get registerForIntl() working with class components with custom props interface?