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