import { BaseSize } from "./types"; /** * Format a number of bytes as KB * * @param bytes - number of bytes * * @private */ export declare function toKB(bytes: number): string; export declare function sizeSummaryString(sizes: BaseSize): string;