import type { SxProps } from '@mui/material'; import React from 'react'; export interface LayoutProps { children: React.ReactNode; sideBar: JSX.Element; isResponsive?: boolean; sx?: SxProps; menuButtonSx?: SxProps; menuButtonContainerSx?: SxProps; } declare const Layout: React.ForwardRefExoticComponent>; export default Layout;