export declare class MathUtils {
    private static powFactor;
    static somePrimes: number[];
    static round(value: number, digits?: number): number;
    static numberCloseTo(num: number, to: number, accuracy?: number): boolean;
    static restrictValue(val: number, minVal: number, maxVal: number): number;
    static getRandomInt(min: number, max: number): number;
    static generateGuid(): string;
}
//# sourceMappingURL=math.d.ts.map