import { CurrencyCodeEnum } from './CurrencyCodeEnum';
/** LongPrice with all digits and its currency and a textual representation */
export interface LongPrice {
    /**  */
    currencyCode: CurrencyCodeEnum;
    /**  */
    text: string;
    /**  */
    value: number;
}
//# sourceMappingURL=LongPrice.d.ts.map