import { Model } from 'sequelize'; import { APP_TYPE, TERM_AND_CONDITION_STATUS, USER_TYPES } from '../../constants/app'; import { ITermsAndConditionAttributes } from '../../interfaces/termsAndConditionInterface'; import { TTermsAndConditionCreationAttributes } from '../../types/termsAndConditionType'; declare class TermsAndConditionModel extends Model { id: string; status: TERM_AND_CONDITION_STATUS; fileStorageId: string; startDate: Date; endDate: Date; userType: USER_TYPES; appType: APP_TYPE; text: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default TermsAndConditionModel;