import React from "react"; type Props = { id: number; title: string; className?: string; }; declare const Meeting: ({ id, title, className }: Props) => React.JSX.Element; export default Meeting;