export type Framework = "nextjs" | "nestjs" | "express" | "fastify"; export declare function detectFramework(projectRoot: string): Framework; export declare function detectTypeScript(projectRoot: string): boolean;