When creating light wrapper components it would be lovely to be able to import prop definitions from the library to use on wrapping components, like this:
import React, { FC } from 'react';
import { Header, HeaderProps } from 'react-aria-accordion';
const MyHeader: FC<HeaderProps> = ({children, ...rest}) => {
<Header {...rest}>
...
</Header>
};
When creating light wrapper components it would be lovely to be able to import prop definitions from the library to use on wrapping components, like this: