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