import type { ErrorType } from '../errors/utils.js'; export type ParseUnitsErrorType = ErrorType; /** * Multiplies a string representation of a number by a given exponent of base 10 (10exponent). * * - Docs: https://viem.sh/docs/utilities/parseUnits * * @example * import { Unit } from 'viem' * * Unit.parseUnits('420', 9) * // 420000000000n */ export declare function parseUnits(value: string, decimals: number): bigint; //# sourceMappingURL=parseUnits.d.ts.map