import { Action } from '@sourceloop/audit-log'; import { CoreEntity } from '@sourceloop/core'; /** * Audit Logs Model to be Used for conditional audit log mixin. */ export declare class ConditionalAuditLog extends CoreEntity { id?: string; action: Action; actedAt: Date; actedOn?: string; actionKey: string; entityId: string; actor: string; before?: object; after?: object; }