declare class AuditEventBase {
    eventCode: number | null;
    eventShortDescription: string | null;
    eventFullDescription?: string | null;
    deletionMarker?: string | null;
    fpNoticeIndicator?: string | null;
    noticeIndicator?: string | null;
}

export { AuditEventBase };
