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