export declareclassUtils{
/**
* Retrieves the class name from a class instance
* @param instance class instance
*/staticgetClassName(instance: object): string | null;
/**
* Checks if the library is running on the browser
*/staticisBrowser(): boolean;
}