import { discoverProjects } from '../project-scanner'; import { type GitInfo } from '../git'; import { type PRStatus } from '../github'; declare const PROJECTS_CACHE_TTL: number; export declare function getProjectsCached(): ReturnType; export declare function invalidateProjectsCache(): void; export { PROJECTS_CACHE_TTL }; export declare function getCachedGitInfo(projectPath: string): GitInfo | null; export declare function getCachedPRStatus(projectPath: string): PRStatus | null;