export interface StyledFooterProps { children: React.ReactElement | React.ReactElement[]; } /** * Container for the `Footer` component. Applies the theme defined for the footer. * * @example * Powered by MB */ export default function StyledFooter({ children }: StyledFooterProps): import("@emotion/react/jsx-runtime").JSX.Element;