import { Model } from 'sequelize'; import { IAgeGroupModelAttributes } from '../../interfaces/ageGroupInterface'; import { TAgeGroupModelCreationAttributes } from '../../types/ageGroupType'; import { COMMAN_STATUS } from '../../constants/app'; export declare class AgeGroupModel extends Model { id: string; sportId?: string; name: string; code: string; minAge?: number; maxAge?: number; description?: string; status: COMMAN_STATUS; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: string; static associate(models: any): void; } export default AgeGroupModel;