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