export interface IPost {
    id: number;
    excerpt: string;
    content: string;
    title: string;
    slug: string;
    featured_media: number | null;
    link: string;
    url: string;
    acf?: any;
    thumbnail?: string;
    type: string;
    featured_image?: {
        [key: string]: string;
    };
    template?: string;
}