/** * Prompts for the Anime.js MCP server * * Prompts provide guided assistance for using Anime.js features and creating animations. */ export declare const prompts: { animation_tutorial: { name: string; description: string; arguments: { animationType: { type: string; description: string; }; }; }; component_usage: { name: string; description: string; arguments: { componentName: { type: string; description: string; }; }; }; performance_optimization: { name: string; description: string; arguments: { useCase: { type: string; description: string; }; }; }; }; export declare const promptHandlers: { animation_tutorial: (args: { animationType?: string; }) => { description: string; messages: { role: string; content: { type: string; text: string; }; }[]; }; component_usage: (args: { componentName?: string; }) => { description: string; messages: { role: string; content: { type: string; text: string; }; }[]; }; performance_optimization: (args: { useCase?: string; }) => { description: string; messages: { role: string; content: { type: string; text: string; }; }[]; }; }; //# sourceMappingURL=prompts.d.ts.map