import React from 'react'; interface AccountInfoProps { title?: string; showLogout?: boolean; } export default function AccountInfo({ title, showLogout }: AccountInfoProps): React.JSX.Element; export {};