export interface ProjectType { isMonorepo: boolean; workspaceRoot?: string; packageManager: "npm" | "pnpm" | "yarn" | "bun"; workspaces?: string[]; } export declare function detectProjectType(projectDir: string): ProjectType; export declare function getEffectiveDir(projectDir: string, workspace?: string): string; export declare function getWorkspaceFromTask(workspace?: string): string | undefined; export declare function findWorkspaceRoot(startDir: string): string | null; //# sourceMappingURL=workspace.d.ts.map