export declare class IngestAutomationEventDto {
    eventName: string;
    source: string;
    occurredAt?: string;
    subjectType?: string;
    subjectId?: string;
    contactId?: string;
    userId?: string;
    payload?: Record<string, unknown>;
    idempotencyKey: string;
}
