import { Model } from 'sequelize'; import { ISkillModelAttributes } from '../../interfaces/skillInterface'; import { TSkillModelCreationAttributes } from '../../types/skillType'; import { BETTER_VALUE_TYPE, COMMAN_STATUS } from '../../constants/app'; export declare class SkillModel extends Model { id: string; sportId?: string; unitId?: string; name: string; code: string; description?: string; minValue?: number; maxValue?: number; betterValueType?: BETTER_VALUE_TYPE; valueSide?: 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 SkillModel;