import { Schema, Document } from "mongoose"; export interface IContact extends Document { vendorId: Schema.Types.ObjectId; organisationId: Schema.Types.ObjectId; email: string; name: string; designation: string; createdAt: Date; updatedAt: Date; isDeleted: boolean; createdBy: Schema.Types.ObjectId; } export declare const ContactModel: import("mongoose").Model & IContact & Required<{ _id: unknown; }> & { __v: number; }, any>; //# sourceMappingURL=contact.entity.d.ts.map