export interface PromptArgument { name: string; description: string; required?: boolean; } export interface PromptDefinition { name: string; description: string; arguments: PromptArgument[]; /** * Build the prompt body. Receives the raw arguments object from the MCP * client; missing optional args are undefined. */ build: (args: Record) => string; } export declare const ALL_PROMPTS: PromptDefinition[]; export declare function findPrompt(name: string): PromptDefinition | undefined;