export declare class Num {
    static formatCurrency(value: number, currency?: string, locale?: string): string;
    static random(min: number, max: number): number;
}
