import { Model } from 'sequelize'; import { IStateAttributes } from '../../interfaces/stateInterface'; declare class StateModel extends Model implements IStateAttributes { id: number; countryCode: string; name: string; stateCode: string; isActive: boolean; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default StateModel;