Using the functions from the [theming](https://github.com/styled-components/jest-styled-components#theming) section of the README in TypeScript, and getting the following error: ```js export const shallowWithTheme = (tree: React.ReactElement<{}>) => { const context = shallow(<ThemeProvider theme={theme} />) .instance() .getChildContext(); ^^^^^^^^^^^^^^^ return shallow(tree, { context }); }; error TS2339: Property 'getChildContext' does not exist on type 'Component<{}, {}, any>'. ``` This has something to do with enzyme’s `instance()` returning a generic React component that doesn’t seem to have a `getChildContext` method. Has anyone else encountered this issue, and know of a workaround? Thanks!