/** * Minified a string of HTML * @param html - HTML string to minify * @returns Minified string */ export declare const minifyHTML: (html: string) => string; /** * Returns a formatted version of the bytes * @param bytes - The bytes to format * @param decimals - The number of decimals to show * @returns The formatted string */ export declare const formatBytes: (bytes: number, decimals?: number) => string;