/**
 * Utility functions for branch name operations
 */
/**
 * Convert a branch name to a safe file system name
 * @param branchName Original branch name (e.g. 'feature/my-branch')
 * @returns Safe branch name for file system operations (e.g. 'feature-my-branch')
 */
export declare function toSafeBranchName(branchName: string): string;
/**
 * Check if a branch name is valid
 * @param branchName Branch name to validate
 * @returns Boolean indicating if the branch name is valid
 */
export declare function isValidBranchName(branchName: string): boolean;
//# sourceMappingURL=branchNameUtils.d.ts.map