import { FC } from "react"; export declare const emailTopicsUrl = "/configuration/email-topics"; export declare const MESF_CONFIGURATIONS: string[]; interface SectionComponent { path: string; sidebar: FC; main: FC; exact?: boolean; } export type SidebarType = FC<{ option?: string; }>; export type ConfigurationsType = [SectionComponent[], SidebarType]; declare const Configuration: FC; export default Configuration;