import React from 'react'; import { SanityBlockOr } from '../block-content'; export interface BlogPostProps { header: string; description: SanityBlockOr; img: JSX.Element; url: string; } declare const BlogPost: React.FC; export default BlogPost;