import * as react from 'react';
import { Theme } from '@mui/material';
import { CommentCardProps } from './types.js';

declare const getAuthorAvatarColor: (theme: Theme, authorId: string | undefined) => string;
declare const CommentCard: react.ForwardRefExoticComponent<CommentCardProps & react.RefAttributes<HTMLDivElement>>;

export { CommentCard as default, getAuthorAvatarColor };
