declare global { interface Number { formatCurrency(currency: string): string; formatKilobytes(): string; formatMegabytes(): string; } } export {};