import { Model } from 'sequelize'; import { AI_MODEL_KEYS, AI_MODEL_KEY_TYPES } from '../../constants'; import { IAiModelKeyAttributes } from '../../interfaces/aiModelKeysInterface'; import { TAiModelKeyCreationAttributes } from '../../types/aiModelKeysType'; declare class AiModelKeyModel extends Model { id: string; key: AI_MODEL_KEYS; hasValue: string; type: AI_MODEL_KEY_TYPES; description: string; version: number; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt?: Date; readonly updatedAt?: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default AiModelKeyModel;