import { Model } from 'sequelize'; import { IAreaModelAttributes } from '../../interfaces/areaInterface'; import { TAeraModelCreationAttributes } from '../../types/areaType'; export declare class AreaModel extends Model { id: string; area: string; city: number; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default AreaModel;