import { Amount, CurrencyInfo } from '../types'; /** * Given a number and CurrencyInfo, return an Amount. */ export declare function numberToAmount(_value: number, _currencyInfo: CurrencyInfo): Amount;