export interface ProjectDetect { packageManager: "pnpm" | "npm" | "yarn"; runCmd: string; hasTurbo: boolean; workspaces: string[]; workspacePackages: string[]; scripts: Record; lintTool: "biome" | "eslint" | "prettier" | "npm-script"; frameworks: ("react" | "nextjs" | "react-native")[]; } export declare function detectProject(cwd: string): ProjectDetect;