/** * GitService handles Git operations for the project. */ export declare class GitService { private workingDir; private git; constructor(workingDir?: string); /** * Check if the directory is a git repository. */ isRepo(): Promise; /** * Check if the working tree is clean. */ isClean(): Promise; /** * Initialize a git repository. */ init(): Promise; /** * Add all files and commit with a message. */ commit(message: string): Promise; /** * Get the current branch name. */ getCurrentBranch(): Promise; } //# sourceMappingURL=GitService.d.ts.map