export declare class GitService {
    private git;
    constructor();
    stageFiles(files: string[]): Promise<void>;
    getStagedDiff(): Promise<string>;
    commit(message: string): Promise<void>;
    installHooks(): Promise<void>;
}
