/** * Check if the string is a valid ULID (Universally Unique Lexicographically Sortable Identifier). * * @param str - The string to check * @returns True if the string is a valid ULID, false otherwise */ export default function isULID(str: string): boolean;