import { BaseEvent, ExchangeId, UserId } from '../../..'; /** * Fired when a user creates a portfolio. * Measures total portfolios directly */ export interface PortfolioCreatedEvent extends BaseEvent { userId: UserId; portfolioId: string; exchangeId: ExchangeId; } export declare const PortfolioCreatedEventName = "PortfolioCreatedEvent";