import React from 'react'; import { ShellMenu } from '../ShellMenu'; declare const ShellLayout: React.FC<{ shellMenu: ShellMenu; children: any; title: JSX.Element | string; showBreadcrumb?: boolean; showSearchBar?: boolean; }>; export default ShellLayout;