import { Model, Sequelize } from 'sequelize'; import { ModelStatic } from '../../d.ts'; import { CityInfoStatic } from './CityInfo'; export interface IPlantInfo extends Model { plantId: number; cityId: number; plantNameEn: string; plantNameTw: string; plantNameCn: string; } export declare type PlantInfoStatic = ModelStatic; interface IPlantInfoReferencedModels { CityInfo: CityInfoStatic; } export declare function plantInfoModelFactory(sequelize: Sequelize, { CityInfo, }: IPlantInfoReferencedModels): PlantInfoStatic; export {};