//#region src/react/lib/format.d.ts /** * Formats byte values into human-readable file sizes * @param bytes - The file size in bytes * @returns Formatted string (e.g., "1.5 KB", "3.2 MB") * @example * formatFileSize(512) // "512 B" * formatFileSize(1536) // "1.5 KB" * formatFileSize(2621440) // "2.5 MB" */ declare function formatFileSize(bytes: number | undefined): string; //#endregion export { formatFileSize }; //# sourceMappingURL=format.d.ts.map