export declare class Utils {
    /**
     * Throw an Error if the variable passed is not a number
     */
    static validateNumber(variable: string | number, field: string): void;
}
