/** * Absolute path to the prebuilt React dashboard (`dashboard/dist`). Resolves * the same whether running from `src/` (tsx) or compiled `dist/` — both are two * levels below the package root. */ export declare function dashboardDistDir(): string; /** True when the dashboard has been built and is ready to serve. */ export declare function dashboardBuilt(): boolean; /** Per-project cache dir, keyed by a hash of the absolute root path. */ export declare function projectCacheDir(root: string): string; export declare function cachedResultPath(root: string): string;