/** * Returns name of current git branch */ export declare function getGitBranch(): string; /** * Run a task that asserts that we are on a specific branch like `main` */ export declare function assertGitBranch(expectedBranch: string): void;