import { Model } from 'sequelize'; import { APP_TYPE, USER_TYPES } from '../../constants/app'; import { IUserAcceptedTermsAndConditionAttributes } from '../../interfaces/userAcceptedTermsAndConditionInterface'; import { TUserAcceptedTermsAndConditionCreationAttributes } from '../../types/userAcceptedTermsAndConditionType'; declare class UserAcceptedTermsAndCondition extends Model { id: string; userId: string; appType: APP_TYPE; userType: USER_TYPES; termsAndConditionId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt: string; static associate(models: any): void; } export default UserAcceptedTermsAndCondition;