import { Game } from '../Game';
import { ExampleHTMLProperties } from '../structs/ExampleHTMLProperties';
import { GameSettings } from '../structs/GameSettings';
/**
 * Helps with creating game page.
 * @group Tools
 */
export declare class DefaultGame {
    static Create(gameProps?: GameSettings, pageProps?: ExampleHTMLProperties, canvasSize?: number): Game;
}
