import * as React from 'react'; import './NewsBox.css'; export interface Props { children: React.ReactNode; className?: string; onClose: () => void; title: string; } export default function NewsBox({ children, className, onClose, title }: Props): JSX.Element;