/// import { BlogPostProps } from '../blog-post'; export interface BlogPostsProps { posts: BlogPostProps[]; } export default function BlogPosts({ posts }: BlogPostsProps): JSX.Element;