/** * .what = initializes a git repository with repo-local user config * .why = enables ci-safe git repos without global git config dependency * * @example * initGitRepo({ dir: '/tmp/my-test-dir' }); * // creates .git/, sets user.name='test-fns', user.email='test-fns@test.local' */ export declare const initGitRepo: (input: { dir: string; user?: { name?: string; email?: string; }; }) => void;