/** * Formats file size from bytes to MB or GB * Calculate using ^2 * @param bytes */ export declare const formatFileSizeText: (bytes: number) => string;