/** * Return a human-readable document size * For example formatSize(7570718) outputs '7.6 MB' * This function uses 1000 for kilo (not 1024) * @param size * @return Returns a human-readable size */ export declare function formatSize(size: number): string;