/// export interface AboutThisEventInterface { title: string; paragraph: string; } declare const AboutThisEvent: ({ title, paragraph }: AboutThisEventInterface) => JSX.Element; export default AboutThisEvent;