import * as React from 'react'; export interface PostItemProps extends React.HTMLAttributes { /** * The title of the blog post. */ title: string; /** * A summary of the blog post. */ summary: string; /** * The URL of the image to display for the blog post. */ imageUrl: string; /** * The date the blog post was published. */ date: string; /** * Any tags associated with the blog post. * @default [] * @example ["react", "vue", "angular"] */ tags?: string[]; } export declare const PostItem: React.ForwardRefExoticComponent>;