/** * Check if a string is a valid semantic version (SemVer). * * @param str - The string to check * @returns True if the string is a valid semantic version, false otherwise */ export default function isSemVer(str: string): boolean;