export declare type EntryProps = { id: number; title: string; date: string; commentCount: number; shareCount: number; }; export declare type PanelProps = { items: EntryProps[]; }; export declare const Panel: ({ items }: PanelProps) => JSX.Element;