/** * Profile media service for @ollaid/native-sso * Uploads the cropped avatar to the IAM authenticated profile endpoint. * * @version 2.7.9 */ import type { UserInfos } from '../types/native'; export interface ProfileImageUploadResponse { message?: string; user?: UserInfos; user_infos?: UserInfos; } export declare const profileMediaService: { uploadProfileImage(image: Blob, filename?: string): Promise; }; export default profileMediaService;