import { Model } from 'sequelize-typescript'; import { EmptyModel } from '../models'; type IncludedModelAttributes = 'id' | 'createdAt' | 'updatedAt' | 'deletedAt'; type PropertiesToOmit = Exclude; export declare type AttributesOf = Partial>;