import { ContactEvent } from "./ContactEvent"; export declare class ContactCreatedEvent extends ContactEvent { static eventName: string; static eventVersion: number; readonly name?: string; constructor({ tenantId, contactId, name, }: { tenantId: string; contactId: string; name?: string; }); }