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