/** * Stack Utilities * Shared helper functions for working with DetectedStack */ import type { DetectedStack } from '../../scanner/types.js'; /** * Detect project type from the stack * Returns a human-readable project type string */ export declare function detectProjectType(stack: DetectedStack | undefined): string;