export interface ProjectListResult { success: boolean; projects: Array<{ id: string; name: string; type: string; description: string; framework: string; projectType: string; features: string[]; tags: string[]; }>; total: number; } export declare function listProjects(): Promise;