import { BigNumber } from 'bignumber.js'; import { Asset } from '../store/types'; export declare const VALUE_DECIMALS = 6; declare type Amount = number | BigNumber; export declare const dp: (amount: Amount | string | BigNumber, coin: Asset) => string | number | BigNumber; export declare const dpUI: (amount: Amount, dp?: number) => number | BigNumber; export declare const prettyBalance: (amount: Amount, coin: Asset, dp?: number) => Amount; export declare const prettyFiatBalance: (amount: Amount, rate: number) => string | BigNumber; export declare const cryptoToFiat: (amount: Amount, rate: number) => BigNumber | "--"; export declare const fiatToCrypto: (amount: Amount, rate: number) => Amount; export declare const formatFiat: (amount: BigNumber) => string | BigNumber; export declare const formatFiatUI: (amount: number) => string | number; export {};