/** * Long-form guides for building with Bland AI. * Used by `bland guide` CLI command and surfaced to LLMs via MCP. */ export interface Guide { slug: string; title: string; summary: string; content: string; } export declare const GUIDES: Guide[]; /** Get all guide slugs */ export declare function getGuideSlugs(): string[]; /** Get a single guide by slug */ export declare function getGuide(slug: string): Guide | undefined; /** Build a condensed version of all guides for MCP instructions */ export declare function buildMcpInstructions(): string; //# sourceMappingURL=guides.d.ts.map