```ts
const PopOutWindow: React.FC<{
  children: React.ReactNode;
  remotePopOut?: Window | null;
  title?: string;
  onUnload?: () => void;
}>;
```
