/** * Prompt definitions for the Motion UI MCP Server */ export declare const prompts: { component_usage: { name: string; description: string; arguments: { name: string; description: string; required: boolean; }[]; }; animation_tutorial: { name: string; description: string; arguments: { name: string; description: string; required: boolean; }[]; }; performance_optimization: { name: string; description: string; arguments: { name: string; description: string; required: boolean; }[]; }; }; export declare const promptHandlers: { component_usage: (args: { componentName: string; }) => Promise<{ description: string; messages: { role: string; content: { type: string; text: string; }; }[]; }>; animation_tutorial: (args: { animationType: string; }) => Promise<{ description: string; messages: { role: string; content: { type: string; text: string; }; }[]; }>; performance_optimization: (args: { useCase: string; }) => Promise<{ description: string; messages: { role: string; content: { type: string; text: string; }; }[]; }>; }; //# sourceMappingURL=prompts.d.ts.map