/** * Returns true if the current git repository is clean (i.e. there are no * outstanding changes or uncommitted but added changes) */ export declare function isGitClean(): boolean; /** * Run a task that assert that the git repo is clean using `isGitClean`. */ export declare function assertGitClean(): void;