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