import { AuditType } from './audit.entities'; export declare class AuditService { addRecord(type: keyof typeof AuditType, action: string, identification: { type: string; id?: number | string; }, from: object, to: object, by: any): Promise; }