Ok, I found the solution...
For everyone who faces this issue: I had to change the function signature in my component to:
export function Flyout({ pageContent, flyoutContent }: FlyoutContainerProps): ReactElement {
In the first place, I had two arguments of the type FlyoutContainerProps, but there is only one, of course...
Best,
Holger