/** * Prompt registry * * All MCP prompts are registered here. Each prompt provides a pre-built * workflow for common SEO tasks. */ import type { McpPromptDefinition } from "../types.js"; export declare const ALL_PROMPTS: McpPromptDefinition[]; export declare function getPromptByName(name: string): McpPromptDefinition | undefined; export declare function getPromptMessages(name: string, args: Record): Array<{ role: "user" | "assistant"; content: { type: "text"; text: string; }; }>; export declare function getPromptCount(): number; //# sourceMappingURL=index.d.ts.map