import { Schema, Document } from "mongoose"; export interface IChangeEntry { field: string; oldValue: any; newValue: any; } export interface IVendorHistory extends Document { vendorId: Schema.Types.ObjectId; updatedAt: Date; updatedValues: IChangeEntry[]; deletedValues: IChangeEntry[]; } export declare const VendorHistoryModel: import("mongoose").Model & IVendorHistory & Required<{ _id: unknown; }> & { __v: number; }, any>; //# sourceMappingURL=vendorHistory.entity.d.ts.map