import React, { FC } from 'react'; import { ListItemProps } from '../../display/list/list.component'; export interface LayoutProps { children?: React.ReactNode; menuItems: ListItemProps[]; onLogout?(): any; logo: string; } export declare const Layout: FC;