import { BusinessProfileAddressResponse } from '../models/BusinessProfileAddressResponse'; export declare class GetBusinessProfileResponse { 'name'?: string; 'email'?: string; 'website'?: string; 'phone'?: string; 'address'?: BusinessProfileAddressResponse; 'timeZone'?: string; 'logoUrl'?: string; 'currencyCode'?: string; 'languageTag'?: string; 'businessType'?: string; 'businessGoals'?: Array; 'businessPrimaryColor'?: string; 'businessSecondaryColor'?: string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }