import React from 'react';
import { BoxProps } from '@mui/material/Box';
import { DrawerProps } from '@mui/material/Drawer';
import { MainContentWrapperComposition } from './main-content-wrapper';
interface OnLayoutComposition {
    MainContentWrapper: React.FC<BoxProps> & MainContentWrapperComposition;
    Sidebar: React.FC<DrawerProps>;
}
export interface Props {
    children: React.ReactNode;
    className?: string;
}
declare const OnLayout: React.FC<Props> & OnLayoutComposition;
export default OnLayout;
