import { Model } from 'sequelize'; import { IPincodeAttributes } from '../../interfaces/pincodeInterface'; declare class PincodeModel extends Model implements IPincodeAttributes { id: number; pincode: string; taluka?: string; district: string; state: string; countryCode: string; cityName: string; latitude: string | null; longitude: string | null; countryId: number | null; stateId: number | null; cityId: number | null; isActive: boolean; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default PincodeModel;