/** * Formats a number (in bytes) to a human readable file size. */ export declare function getReadableFileSizeString(fileSizeInBytes: number): string; /** Takes an html encoded string and converts it to actual decoded html. */ export declare function decodeHtml(html: string): string; export declare function generateRandomId(length?: number): string;