/**
 * Check if a string is a valid Clarity ID
 * Clarity ID format: alphanumeric random string with 10 characters
 *
 * @param str - The string to validate
 * @returns Returns true if the string is a valid Clarity ID
 */
export declare function isClarityId(str: string): boolean;
