import { ITickerExchange } from '../../..'; import { IMoneyValue } from './moneyValue.i'; import { IStringReference } from './stringReference.i'; /** * money value two decimals float * @example 136.15 * @format float-two-decimals * @TJS-type float */ export interface IAssetPrice { tickerExchange: ITickerExchange; bid?: IMoneyValue; offer?: IMoneyValue; price?: IMoneyValue; fromExternalPriceProvider?: IStringReference; } export declare const isIAssetPrice: (d: any) => d is IAssetPrice;