/** * Check if the string is UUID * * @param str - The string to check * @param version - Options object * @returns True if the string matches the validation, false otherwise */ export default function isUUID(str: string, version?: string): boolean;