export interface BlogPost { date: string; title: string; tags: string[]; file: string; slug: string; fullSlug: string; markdown: string; summary: string; html: string; next?: Partial; prev?: Partial; } export interface BlogPostTag { name: string; count: number; posts: string[]; }