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