interface AuditLogParams {
    actorId?: string;
    action: string;
    entityType: string;
    entityId?: string;
    oldValue?: Record<string, unknown>;
    newValue?: Record<string, unknown>;
    ipAddress?: string;
}
export declare function createAuditLog(params: AuditLogParams): Promise<void>;
export {};
//# sourceMappingURL=audit-logger.d.ts.map