interface Prompt { name: string; description: string; arguments?: Array<{ name: string; description: string; required?: boolean; }>; } export declare const prompts: Prompt[]; export declare const handlePromptRequest: (name: string, args: Record) => { messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }; export {}; //# sourceMappingURL=prompts.d.ts.map