import { AxiosInstance } from 'axios'; export interface BusinessProfile { about?: string; address?: string; description?: string; email?: string; profile_picture_url?: string; websites?: string[]; vertical?: string; } export interface BusinessProfileApi { get(fields?: string[]): Promise; update(profile: Partial): Promise<{ success: boolean; }>; } export declare const createBusinessProfileApi: (client: AxiosInstance, phoneNumberId: string) => BusinessProfileApi;