export declare const UPSTREAM_URL = "https://github.com/opencrvs/opencrvs-countryconfig.git"; export declare const UPSTREAM_BRANCH = "release-v2.0.0"; /** * Runs a git command in the country config working directory. * * By default stderr is inherited so the user sees progress output from * long-running commands (e.g. `git fetch`). Pass `silent: true` to suppress * both stdout and stderr when you only care about the exit code. */ export declare function runGit(args: string[], { silent }?: { silent?: boolean; }): string; /** * Runs a git command and returns true on success, false on failure. * Stderr/stdout are suppressed — use only when the exit code is the only * signal you care about. */ export declare function tryGit(args: string[]): boolean; export declare function assertIsGitRepo(): void; declare function main(): Promise; export { main }; //# sourceMappingURL=checkout-upstream-files.d.ts.map