import type { FC } from 'react'; import type { Post } from '../types/social'; interface ReactionsProps { className?: string; post: Post; } declare const Reactions: FC; export default Reactions;