import { AbstractBaseEntity } from '../base'; export declare const AuditType: { entity: string; }; export declare class AuditRecord extends AbstractBaseEntity { type: keyof typeof AuditType; action: string; identification: any; from: any; to: any; diff: any; }