export declare const useProfileInfo: <T>({ fetchUserProfile, }: {
    fetchUserProfile?: () => Promise<T>;
}) => {
    profileData: T | undefined;
    isLoading: boolean;
    error: null;
    getProfileData: () => Promise<void>;
};
