export interface LocationConfig { name?: string; addressLine1?: string; addressLine2?: string; city?: string; state?: string; postalCode?: string; stateCode?: string; } export declare class Location { readonly name: string; readonly addressLine1: string; readonly addressLine2: string; readonly city: string; readonly state: string; readonly stateCode: string; readonly postalCode: string; constructor(config: LocationConfig); }