interface IUserProfile {
    extensionVersion: () => Promise<string>;
    removeUserAttributes: (attributeNames: Array<string>) => void;
    getUserAttributes: (attributeNames: Array<string>) => Promise<Record<string, any>>;
    updateUserAttributes: (attributeMap: Record<string, any>) => void;
}
declare const UserProfile: IUserProfile;
export default UserProfile;
