import { BaseEvent, UserId } from '../../..'; /** * Fired when a user links a portfolio to an exchange. * Measures total number of exchanges linked to a user's portfolios. */ export interface ExchangeLinkedEvent extends BaseEvent { userId: UserId; exchangeId: string; } export declare const ExchangeLinkedEventName = "ExchangeLinkedEvent";