import { CreateGameInput } from "../../generated/types.js";
/**
 * Creates a new game on the Rune platform
 * @param game The game data to create
 * @returns A promise that resolves to the created game's ID
 */
export declare function createGame(game: Pick<CreateGameInput, "title" | "description">): Promise<number>;
