export declare type Options = { cwd: string; }; export default class GitRev { opts: Options; constructor(opts?: Options); _command(cmd: string): Promise; short(): Promise; long(): Promise; branch(): Promise; tag(): Promise; log(): Promise; exactTag(): Promise; origin(): Promise; }