import { SxProps, Theme } from '@mui/material'; import { ReactNode } from 'react'; export interface ContentProps { sx?: SxProps; children: ReactNode; } export declare function Content({ sx, children }: ContentProps): import("react/jsx-runtime").JSX.Element; export interface FooterProps { sx?: SxProps; children: ReactNode; } export declare function Footer({ sx, children }: FooterProps): import("react/jsx-runtime").JSX.Element;