import BaseClass from "../utils/BaseClass"; import { GeocoderCollection } from './Geocoder'; export declare class AddressCollection extends BaseClass { static className: string; billingInfo: string; business: boolean; city: string; company: string; countryCode: string; createdAt: Date; customerAddressId?: string; email: string; firstName: string; fullAddress: string; fullName: string; geocoder: () => Promise; id: string; isGeocoded: boolean; isLocalized: boolean; lastName: string; lat: number; line1: string; line2: string; lng: number; mapUrl: string; metadata: object; name: string; notes: string; phone: string; providerName: string; reference: string; referenceOrigin: string; stateCode: string; staticMapUrl: string; updatedAt: Date; zipCode: string; static define(): void; } declare const Address: import("../typings/Library").BaseResource; export default Address;