import { Model } from 'sequelize'; import { ISportAcademyBatchModelAttributes } from '../../interfaces/sportAcademyBatchInterface'; import { TSportAcademyBatchModelCreationAttributes } from '../../types/sportAcademyBatchType'; import { COMMAN_STATUS } from '../../constants/app'; export declare class SportAcademyBatchModel extends Model { id: string; sportAcademyId: string; name: string; sportId: string; startDate: Date; endDate: Date; fees: number; capacity: number; description?: string; status: COMMAN_STATUS; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default SportAcademyBatchModel;