/// import { GridProps } from "@mui/material"; /** * Holds the Footer Menu Items as a MUI Grid. * * There are two places in which the footer menu is used: * 1. In a main container (e.g. on the Portal's home page) * 2. In a drawer * * Depending on where it is being used, we want different items to be displayed: * - in the portal main content, we simply want "Datenschutz", "Disclaimer", "Nutzungsbedingungen" and "Impressum" * - in the portal drawer, we want the full set with "Anleitung", "Hilfe (FAQ)", and "Kontakt" * - same goes for the webmap drawer */ declare const FooterMenu: ({ gridContainerProps, short, }: { gridContainerProps: GridProps; short?: boolean | undefined; }) => JSX.Element; export default FooterMenu;