declare type GitHead = {
    id?: string;
    committer_name?: string;
    committer_email?: string;
    message?: string;
    author_name?: string;
    author_email?: string;
};
declare type GitRemote = {
    name?: string;
    url?: string;
};
export declare type GitData = {
    head?: GitHead;
    branch?: string;
    remotes?: GitRemote[];
};
export declare function getGitData(): Promise<{
    head: GitHead;
    branch: string;
    remotes: GitRemote[];
}>;
export {};
