import { ExampleHTMLProperties } from '../structs/ExampleHTMLProperties';
/**
 * Helps with creating game page.
 * @group Tools
 */
export declare class ExampleHTML {
    /**
     * Creates HTML game page with given properties.
     * Page is sized to viewport and canvas is centered.
     * @param props The properties.
     */
    static Render(props: ExampleHTMLProperties | undefined): void;
}
