import { FC } from 'react'; interface UserNameProps { color: string; padding?: string; hideUsername?: boolean; backgroundColor?: string; username?: string; source?: string; postUrl?: string; } declare const UserName: FC; export default UserName;