/// import { GridDirection } from '@mui/material/Grid'; import { TextSize } from '../typography/sizing'; export interface User { name: string; type: string; location?: string; image?: string | null; description?: string; link?: string; } interface UserInfoProps { user: User; size?: TextSize; direction?: GridDirection; titleComponent?: 'title' | 'subtitle'; border?: boolean; icon?: any; } export default function UserInfo({ user, size, direction, border, titleComponent, icon, }: UserInfoProps): JSX.Element; export {};