import { UseQueryOptions } from 'react-query';
import { SynapseClient } from '../..';
import { UserProfileAndImg } from '../../functions/getUserData';
import { SynapseClientError } from '../../SynapseClient';
import { UserProfile } from '../../synapseTypes';
export declare function useGetUserProfile(principalId: string, options?: UseQueryOptions<UserProfile, SynapseClientError>): import("react-query").UseQueryResult<UserProfile, SynapseClient.SynapseClientError>;
export declare function useGetUserProfileWithProfilePic(principalId: string, options?: UseQueryOptions<UserProfileAndImg, SynapseClientError>): import("react-query").UseQueryResult<UserProfileAndImg, SynapseClient.SynapseClientError>;
