import { type ClassNameValue } from "tailwind-merge";
export declare function cn(...inputs: ClassNameValue[]): string;
/**
 * Dynamically import a module from a URL in the browser in a way compatible with all react frameworks (nextjs doesn't support dynamic imports)
 */
export declare function importDynamicBrowserModule<T = any>(name: string, url: string): Promise<T>;
