import { IntegrationEntityType } from './integration-entity.model'; export declare enum IntegrationsEventType { CONTACT_CREATED = "CONTACT_CREATED", CONTACT_UPDATED = "CONTACT_UPDATED", CONTACT_DELETED = "CONTACT_DELETED" } export type IntegrationsBaseEvent = { type: T; accountId: string; }; export type IntegrationsContactEvent = IntegrationsBaseEvent & { contactId: string; contactType: IntegrationEntityType; }; export type IntegrationsEvent = IntegrationsContactEvent;