import { FunctionComponent } from 'react'; type Props = { name: string; avatar?: string; }; declare const UserHeader: FunctionComponent; export default UserHeader;