import { FC } from "react"; type HomeAdministrationProps = { showAdminArea?: boolean; portalMode: boolean; onEditAccountClick: () => void; }; declare const HomeAdministration: FC; /** * Can only use role and secLevel information in WebMap, where we have access to the useAuthorization * context, so we wrap it in a component where we can assume safe access to authz context. */ export declare const HomeAdministrationWebMap: FC>; export declare const HomeAdministrationWithContext: FC>; export default HomeAdministration;