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