import { BigDecimal } from "./types"; /** * Parses a string value representing a number to a BigInt, with a specified number of decimals. * If the fraction part of the string value is longer than the allowed decimal places, it rounds the value. * * @param {string} value - The string value to be parsed. * @param {number} decimals - The number of decimals to consider during parsing. * @returns {bigint} The parsed BigInt value. */ export declare function parseUnits(value: string, decimals: number): BigDecimal;