import { EncodedExchange, ExchangeId } from '../exchanges'; import { PortfolioId } from './Portfolio'; export declare type PortfoliosData = Partial<{ [exchange in ExchangeId]: ExchangeDetails; }>; export interface ExchangeDetails { exchange: EncodedExchange; isActive: boolean; mainPortfolio?: PortfolioId; }