import { ElementType, FC } from 'react'; import { BoxProps, ContainerProps } from '@mui/material'; export interface FooterProps extends BoxProps { /** * Props applied to container */ containerProps?: ContainerProps; } /** * Component to render content at the bottom of each page */ export declare const Footer: FC;