export type GitInfo = {
    repository: string | null;
    pullRequestNumber: string | null;
    commit: string | null;
    author: string | null;
};
export declare function gitInfo(noGit: () => void): Promise<GitInfo>;
//# sourceMappingURL=git.d.ts.map