import type { ToolDef } from "./index.js"; /** * `get_marketing_playbook` (PRD mcp-marketing-skill, Bloque 2). A model-controlled * tool that returns the marketing playbook (METHOD, not data). It is the * auto-invocation primitive: the trigger-oriented description below makes Claude * call it on its own when the user asks for a marketing report, after which the * model invokes the read-only data tools (get_overview, get_channels, …) to fetch * the numbers the playbook tells it to analyze. * * Registered in ALL_TOOLS, so it inherits the read-only gate: hidden without an * api_key, enabled with one (a report needs data, which needs a key — Decisión 2). * The handler ignores `client`; it only returns the embedded CONTENT. */ export declare const getMarketingPlaybookTool: ToolDef; //# sourceMappingURL=marketing.d.ts.map