import { type SimpleGit } from 'simple-git'; declare class GitUtil { #private; constructor(parent: { get simpleGit(): SimpleGit; }); /** * Retrieves user's name from Git in the global scope or the project scope * (it'll take what Git will use in the current context) * @return {Promise} configured git name or undefined */ name(): Promise; /** * Retrieves user's email from Git in the global scope or the project scope * (it'll take what Git will use in the current context) * @return {Promise} configured git email or undefined */ email(): Promise; } export declare abstract class GitMixin { _git?: GitUtil; get git(): GitUtil; } export {};