/** * Project type detected by analyzing project files */ export type ProjectType = "frontend" | "backend" | "fullstack" | "story" | "cli" | "unknown"; /** * Detect project type by analyzing project files * * @param cwd - Current working directory to analyze * @returns Detected project type */ export declare function detectProjectType(cwd: string): ProjectType; /** * Get human-readable description of project type */ export declare function getProjectTypeDescription(type: ProjectType): string; //# sourceMappingURL=project-detector.d.ts.map