import * as React from 'react'; export interface WithGameProps { game: Phaser.Game; } declare const withGame: (Component: React.ComponentType) => { (props: Pick>): JSX.Element; displayName: string; }; export default withGame;