import { BaseEvent, UserId } from '../../..'; /** * Fired when a user updates their exchange credentials * Measures total number of exchange updates */ export interface ExchangeUpdatedEvent extends BaseEvent { userId: UserId; exchangeId: string; } export declare const ExchangeUpdatedEventName = "ExchangeUpdatedEvent";