import { DebugLogger } from './output.js';
export default function collectGitInfo(cwd: string, debug: DebugLogger): Promise<{
    branch: string | null;
    message: string | null;
    commit: string | null;
    committedAt: string | null;
    remote: string | null;
    author: {
        email: string | null;
        name: string | null;
    };
    tags: string[];
}>;
