export interface GitStatus {
    local_branch: string | null;
    remote_branch: string | null;
    remote_diff: string | null;
    clean: boolean;
    files: string[];
}
export declare const gitStatus: (cwd: string) => Promise<GitStatus>;
export declare const getChangedFiles: (mainBranch: string) => Promise<any>;
//# sourceMappingURL=git.d.ts.map