import { ZoomLiveEventType } from '../enum/zoom-live-event-type.enum';
export declare class ZoomAnalyticsLiveEvent {
    id: number;
    programId: number;
    sessionId: number;
    onlineSessionId: number;
    webinarExtId: string;
    email: string;
    userId: number | null;
    eventType: ZoomLiveEventType;
    occurredAt: Date;
    zoomParticipantId: string | null;
    zoomDisplayName: string | null;
    leaveReason: string | null;
    createdAt: Date;
    constructor(partial?: Partial<ZoomAnalyticsLiveEvent>);
}
