import { BaseModel } from './BaseModel'; export interface Address extends BaseModel { cep: string; street: string; neighborhood: string; city: string; state: string; number: number; complement: string; country: string; cityCode: string; cityGroupId: string; }