import { Entity } from "./entity"; export declare class Bairro { _key: string; taxa_entrega: string; tempo_estimado_minutos: number; nome: string; } export class Cidade extends Entity { bairros: Array = new Array() nome: string constructor(json?:any) { super(json); json = json || {} this.bairros = json.bairros this.nome = json.nome || '' } }