import type { Faker } from '.'; export declare class Git { private readonly faker; private hexChars; constructor(faker: Faker); /** * branch * * @method faker.git.branch */ branch(): string; /** * commitEntry * * @method faker.git.commitEntry * @param options */ commitEntry(options?: { merge?: boolean; }): string; /** * commitMessage * * @method faker.git.commitMessage */ commitMessage(): string; /** * commitSha * * @method faker.git.commitSha */ commitSha(): string; /** * shortSha * * @method faker.git.shortSha */ shortSha(): string; }