import { CurrencyInfo, Value } from '../types';
/**
 * Given a BigInt, return an Value object with a CurrencyInfo and Amount.
 */
export declare function bigIntToValue(value: BigInt, currencyInfo: CurrencyInfo): Value;
