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