/** * Shallow project classifier — given a directory confirmed to hold a Claude * Code signature, decide whether it's `new` / `configured` / `existing` / * `unsupported` and suggest the appropriate slaminar action. * * Intentionally cheap: only reads the handful of files needed to decide, so * the classifier can run on dozens of candidates without stalling. */ import type { DiscoveredProject } from '../types/index.js'; export declare function classifyProject(root: string): DiscoveredProject;