const Foo: FooComponent = ({ name: string, test: number, }) => { return ( <>

hello, {name}

{test}
); }; const Bar: BarComponent = () => { return ( <> ); };