import { Model } from 'sequelize'; import { ICloneListModelAttributes } from '../../interfaces/cloneListInterface'; import { TCloneListModelCreationAttributes } from '../../types/cloneListType'; export declare class CloneListModel extends Model { id: string; title: string; isClone: boolean; isDefault: boolean; dataCloneAcademicCalendarId: string; academicCalendarId: string; instituteId: string; static associate(models: any): void; } export default CloneListModel;