I have just changed our codebase to the new flow types for React (meaning to use stuff as described [here](https://flow.org/en/docs/react/components/#toc-class-components)). So my react classes now look like that: ```javascript type Props = { value: boolean, }; class MyComponent extends React.Component<Props> { // ... } ``` These props are then not recognized by the library anymore... I am using version 2.17.0.