export interface GameDevelopmentPromptCategory { readonly id: string; readonly label: string; } export interface GameDevelopmentPrompt { readonly id: string; readonly category: string; readonly eyebrow: string; readonly title: string; readonly description: string; readonly bestFor: string; readonly prompt: string; } export declare const GAME_DEVELOPMENT_PROMPT_PAGE_URL = "https://www.glitch.fun/publishers/tools/ai-game-development-prompts"; export declare const GAME_DEVELOPMENT_PROMPT_CATEGORIES: readonly GameDevelopmentPromptCategory[]; export declare const GAME_DEVELOPMENT_PROMPTS: readonly GameDevelopmentPrompt[]; export declare function gameDevelopmentPromptUrl(promptId: string): string; export declare function gameDevelopmentPromptResourceUri(promptId: string): string; export declare function gameDevelopmentPromptCommandName(promptId: string): string; export declare function getGameDevelopmentPrompt(promptId: string): GameDevelopmentPrompt | undefined; export declare function filterGameDevelopmentPrompts(input?: { readonly category?: string; readonly search?: string; }): GameDevelopmentPrompt[]; export declare function gameDesignGenreProfile(value: string): string;