export declare class AuditLog {
    id: number;
    userId: number;
    action: string;
    entityType: string;
    entityId: number | null;
    oldValue: unknown | null;
    newValue: unknown | null;
    ipAddress: string | null;
    createdAt: Date;
}
