/** * Prompt handling for WordPress MCP * Manages prompt listings and retrieval */ /** * List all available prompts */ export declare function listPrompts(): { prompts: { name: string; description: string; arguments: import("../prompts/index.js").PromptArgument[]; }[]; }; /** * Get a specific prompt by name */ export declare function getPrompt(promptName: string, args?: Record): { description: string; messages: { role: string; content: { type: string; text: string; }; }[]; };