/** * Format the file size in bytes to a human-readable format. * Adapted from https://stackoverflow.com/a/14919494/5726823 * @param {number} bytes The size of the file in bytes * @returns {string} */ export default function formatFileSize(bytes: number): string; //# sourceMappingURL=format-file-size.d.ts.map