1export interface PostCarouselProps {
2 posts: {
3 key: number;
4 title: string;
5 slug: string;
6 summary: string;
7 coverImage: string;
8 canonicalURL: string;
9 published: string;
10 affiliationName: string;
11 affiliationURL?: string;
12 }[];
13 title?: string;
14}