Our migration to Storybook 7 has been fairly painless so far, but we've come across a blocker where we can't migrate some of our stories if they're using Template.bind({}). ie:
<RadioToggleComponent {...args} />
);
export const Primary = Template.bind({});
Primary.args = {
size: 'large',
values: ['Organisation', 'Individual'],
name: 'account-type',
defaultChecked: 'Individual',
};```
We get the following Typescript error: `Property 'bind' does not exist on type 'StoryAnnotations<ReactRenderer, Props>'`
What's the migration process for stories like this?