export interface GitFingerprint { commit?: string; branch?: string; dirty: boolean; } export declare function computeGitFingerprint(projectPath: string): Promise; export declare function formatFingerprint(fingerprint: GitFingerprint): string; /** * Get project directory name from path * Uses the project's basename for easy identification */ export declare function projectHash(projectPath: string): string;