import { Model } from 'sequelize'; import { IRmsVendorDocumentAttributes } from '../../interfaces/rmsVendorDocumentInterface'; import { TRmsVendorDocumentCreationAttributes } from '../../types/rmsVendorDocumentType'; declare class RmsVendorDocumentModel extends Model { id: string; instituteId: string; vendorId: string; fileStorageId?: string | null; documentType: string; fileUrl: string; expiryDate?: Date | null; status: string; createdBy?: string | null; updatedBy?: string | null; deletedBy?: string | null; readonly createdAt?: Date; readonly updatedAt?: Date; readonly deletedAt?: Date | null; static associate(models: any): void; } export default RmsVendorDocumentModel;