import { Action } from '@sourceloop/audit-log'; import { CoreEntity } from '@sourceloop/core'; export declare class AuditLog extends CoreEntity { id?: string; action: Action; actedAt: Date; actedOn?: string; actionKey: string; entityId: string; actor: string; before?: object; after?: object; actionGroup?: string; [prop: string]: any; }