import * as React from 'react'; interface Props { user?: string | null; userAvatar?: React.ReactNode | null; botAvatar?: React.ReactNode | null; interactive?: boolean; } export default function MessageAvatar({ user, userAvatar, botAvatar, interactive }: Props): JSX.Element | null; export {};