import { CurrencyInfo, Value } from '../types';
/**
 * Given a bigint and CurrencyInfo, return an Value object.
 */
export declare function bigIntToValue(_value: bigint, _currencyInfo: CurrencyInfo): Value;
