/** * Returns the corresponding size represented in kilobytes. * @param n The number to get the kilobytes of. * * @example * ```typescript * kilobytes(2); // => 2048 * ``` */ declare const kilobytes: (n: number) => number; export default kilobytes; //# sourceMappingURL=kilobytes.d.ts.map