/**
* 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 declarefunctionisULID(str: string): boolean;