/** * @purpose Execute system command synchronously with safe error handling. * @pre Command and binary available in PATH; run in correct environment. * @sideEffect Process: launch external process; Logs: error on failure. * @consumer git/git-core, other domains via utils */ export declare const execSyncSafe: (cmd: string) => string;