/** * createAndSwitchBranch - Creates a new local Git branch and switches to it. * This function uses the simple-git library to automate the process of creating and switching to the new branch. * * After the branch is created and checked out, a confirmation message is logged to the console. * * Example: * createAndSwitchBranch('feat/new-feature') * * @param {string} branchName - The name of the branch to be created and switched to. * @returns {Promise} - A promise that resolves once the branch is successfully created and switched. */ export declare const createAndSwitchBranch: (branchName: string) => Promise; /** * getCurrentBranchName - Retrieves the current Git branch name using simple-git. * * @returns {Promise} The current branch name. */ export declare const getCurrentBranchName: () => Promise;