export declare class Utils {
    /**
     * Throw an Error if the variable passed is not a number
     */
    static validateNumber(variable: string | number, field: string): void;
    static deepClone(obj: any, hash?: WeakMap<object, any>): any;
}
