import { Base } from './base'; import { GeoPoint } from './geoPoint'; export declare class Address extends Base { county?: string; neighborhood?: string; postalCode?: string; state?: string; street?: string; exteriorNumber?: string; interiorNumber?: string; directions?: string; pinLocation?: GeoPoint; constructor(data?: any | null); }