export interface Guide { id: string; title: string; category: 'architecture' | 'migration' | 'performance' | 'troubleshooting'; sections: GuideSection[]; } export interface GuideSection { heading: string; content: string; code?: string; } export declare const GUIDE_ARCHITECTURE: Guide; export declare const GUIDE_MIGRATION: Guide; export declare const GUIDE_PERFORMANCE: Guide; export declare const GUIDE_TROUBLESHOOTING: Guide; export declare const ALL_GUIDES: Guide[]; export declare function getGuide(id: string): Guide | undefined; export declare function searchGuides(query: string): GuideSection[];