import { Model, Sequelize } from 'sequelize'; import { ModelStatic } from '../../d.ts'; export interface ICurrentAlarm extends Model { id: number; ip: string; errorNo: string; errorMessage: string; updateTime: Date; } export declare type CurrentAlarmStatic = ModelStatic; export declare function currentAlarmModelFactory(sequelize: Sequelize): CurrentAlarmStatic;