import React from 'react';
import type { Config, UseAccountReturnType } from 'wagmi';
import type { FunkitUserInfo } from '~/consts/funkit';
import { FunProfileView } from '../../ProfileDetails';
export declare const ProfileTitleSection: ({ animateOut, account, userInfo, onChangeView, onLogout, onClose, }: {
    animateOut?: boolean;
    account: UseAccountReturnType<Config>;
    userInfo: FunkitUserInfo;
    onChangeView: (newView: FunProfileView) => void;
    onLogout: () => void;
    onClose: () => void;
}) => React.JSX.Element;
