import { Framework } from '../../types/index.js'; export declare function detectMonorepo(codebasePath: string): Promise; /** * Given a monorepo root, find the frontend app directory. * Scores packages by frontend-indicating dependencies (react > next > vue > vite), * penalises backend-only packages (express, fastify). */ export declare function findFrontendApp(codebasePath: string): Promise; /** * Detect the base URL for the dev server by checking (in order): * 1. .env.local / .env.development / .env — PORT= variable * 2. vite.config.{ts,js,mts} — port: * 3. Framework defaults (Next.js: 3000, SvelteKit: 5173, Nuxt: 3000, Vite: 5173) */ export declare function detectBaseUrl(codebasePath: string, framework: Framework): Promise; export declare function detectFramework(codebasePath: string): Promise;