<!-- * Please fill out this template with all the relevant information so we can understand what's going on and fix the issue. We appreciate bugs filed and PRs submitted! * If your issue is regarding one of the query APIs (`getByText`, `getByLabelText`, etc), then please file it on the `dom-testing-library` repository instead. If you file it here it will be closed. Thanks :) * Please make sure that you are familiar with and follow the Code of Conduct for this project (found in the CODE_OF_CONDUCT.md file). We'll probably ask you to submit the fix (after giving some direction). If you've never done that before, that's great! Check this free short video tutorial to learn how: http://kcd.im/pull-request --> - `@testing-library/react` version: `10.0.0` - `react` version: `16.13.0` - `node` version: `12.13.0` - `npm` (or `yarn`) version: `1.21.1` ### Relevant code or config: ```javascript import { waitFor } from '@testing-library/react'; ``` ### What happened: I get a typescript error: ``` @types/testing-library__react"' has no exported member 'waitFor'.ts(2305) ``` ### Reproduction: I have `@testing-library/react@^10.0.0` and `@types/testing-library__react@^9.1.3` installed. I believe each is the latest version. My current workaround is to add `// @ts-nocheck` to get my test with `waitFor()` to pass.