import { Schema, Document } from "mongoose"; export interface IVendor extends Document { organisationId: Schema.Types.ObjectId; vendor_name: string; vendor_Code?: string | null; business_type: string; industry_category: string; website_url: string; primary_location_address: string; country_of_operation: string; services_provided: string[]; vendorLogo?: string; createdBy: Schema.Types.ObjectId; hasContract: boolean; isDeleted: boolean; isLocked: boolean; isCompleted: boolean; hasError: boolean; createdAt: Date; updatedAt: Date; } export declare const VendorModel: import("mongoose").Model & IVendor & Required<{ _id: unknown; }> & { __v: number; }, any>; //# sourceMappingURL=vendor.entity.d.ts.map