export type ProjectTemplateInfo = { name: string; shortName: string; description: string; url: string; /** Optional field to hide the template from all listings */ hidden?: boolean; category?: ProjectTemplateCategory; }; export declare enum ProjectTemplateCategory { Web = "web", GameEngine = "game-engine", Other = "other" } //# sourceMappingURL=ProjectTemplateInfo.d.ts.map