/** * Convert bigint with specified decimals to string-representation of number * * analog of `fromNano` function from @ton/core package, but with custom decimals count * * @see [implementation by viem.](https://github.com/wevm/viem/blob/71a4e7aca259f0565005929d6584dca87bd59807/src/utils/unit/formatUnits.ts#L16) */ declare function fromUnits(value: bigint, decimals?: number): string; export { fromUnits };