import { IProfileClient, Profile, ModuleOptions } from './types'; export declare class ProfileClient implements IProfileClient { private readonly options; private readonly http; private accessToken; constructor(options: ModuleOptions); private mockClient; withToken(accessToken: string): ProfileClient; getMyProfile(): Promise; getProfile(userId: number): Promise; getOrCreateProfile(profileData: Profile): Promise; createProfile(profileData: Profile): Promise; }