export type FeedSection = {
    content: string;
    title: string;
    featured?: boolean;
    date: string;
    author: string;
    avatar: string;
    cover?: string;
};
export type Feed = FeedSection[];
//# sourceMappingURL=feed.d.ts.map