export declare const templatesDirectory: string;
export declare const templates: {
label: string;
value: string;
}[];
export declare const createGameFromTemplate: ({ overwrite, targetDir, template, }: {
overwrite: boolean;
targetDir: string;
template: string;
}) => Promise<void>;