import { AssetType } from '../../accounts/model/AccountPrices'; export interface Price { currency: string; amount: number; } export declare enum PriceType { CUSTOM = "CUSTOM", DEFAULT = "DEFAULT" } export interface ChannelPrice { channelId: string; channelName?: string; customPrice: Price; isShownToUser: boolean; } export interface AssetTypePrice { assetType: AssetType; customPrice?: Price; priceShownToUser?: Price; evaluatedPriceType?: PriceType; warning?: string; }