export interface AllTemplatesResult { success: boolean; summary: { projectCount: number; pageCount: number; total: number; }; projects: Array<{ id: string; name: string; type: "project"; framework: string; projectType: string; description: string; features: string[]; }>; pages: Array<{ id: string; name: string; type: "page"; templatesCount: number; description: string; templates: string[]; }>; guidance: { project: string; page: string; }; } export declare function listAllTemplates(): Promise;