import React from 'react';
import { AppBarProps } from '@mui/material/AppBar';
import { BoxProps } from '@mui/material/Box';
export interface MainContentWrapperComposition {
    Main: React.FC<BoxProps>;
    Header: React.FC<AppBarProps>;
}
declare const MainContentWrapper: React.FC<BoxProps> & MainContentWrapperComposition;
export default MainContentWrapper;
