/** * Project type detection and configuration. * Produces schema-compliant ProjectContext for project-context.json. * * @epic T4454 * @task T4530 */ import type { FileNamingConvention, ImportStyle, ProjectContext, ProjectType, TestFramework } from '@cleocode/contracts'; export type { FileNamingConvention, ImportStyle, ProjectContext, ProjectType, TestFramework }; /** * Detect project type from directory contents. * Returns a schema-compliant ProjectContext object. */ export declare function detectProjectType(projectDir: string): ProjectContext; //# sourceMappingURL=project-detect.d.ts.map