import { Model } from 'sequelize'; import { ICityAttributes } from '../../interfaces/cityInterface'; export declare class CityModel extends Model implements ICityAttributes { 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 CityModel;