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