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