/** * 获取所有 git 仓库 * * @export * @param {string} root 根路径 * @returns {array} 路径列表 * @example * ```ts * getAllGitRepo('/root/yang'); * * [ * { * root: '/root', * origin: 'git@git.address', * } * ] * ``` */ export declare function getAllGitRepo(root: string): { root: string; origin: string; }[];