import { Model, InferAttributes, InferCreationAttributes } from 'sequelize'; declare class Migration extends Model, InferCreationAttributes> { Name: string; AppliedAt: Date; } declare const model: typeof Migration; export default model;