export declare class Utils {
    /**
     * Retrieves the class name from a class instance
     * @param instance class instance
     */
    static getClassName(instance: object): string | null;
    /**
     * Checks if the library is running on the browser
     */
    static isBrowser(): boolean;
}
