import { ContactChannelEvent } from "./ContactChannelEvent"; export declare class ContactChannelAddedEvent extends ContactChannelEvent { static eventName: string; static eventVersion: number; readonly channelId: string; readonly platform: string; readonly channelUserId: string; constructor({ tenantId, contactId, channelId, platform, channelUserId, }: { tenantId: string; contactId: string; channelId: string; platform: string; channelUserId: string; }); }