import { Game } from '../core/Game.js';
import { GameScript } from '../types/index.js';
/**
 * Tạo game mới
 * @param script Script của game
 * @returns Game instance
 */
export declare function createGame(script: GameScript): Game;
