import { Model } from 'sequelize'; import { USER_HAS_PARENT_STATUS } from '../../constants/app'; import { IUserHasParentAttributes } from '../../interfaces/userHasParentInterface'; import { TUserHasParentCreationAttributes } from '../../types/userHasParentType'; declare class UserHasParentModel extends Model { id: string; status: USER_HAS_PARENT_STATUS; userId: string; parentId: string; instituteAccess: string[]; unverifiedInstitute: string[]; isPrimaryParent: boolean; isGuardianParent: boolean; isDeleted: boolean; securityCode?: string; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly deletedAt?: string; readonly updatedAt: Date; static associate(models: any): void; static addHooks(models: any): void; } export default UserHasParentModel;