import * as React from 'react';
import { ISideBarMenuItem } from '../../GlobalTypes';
import { RouteItem } from '../../routes';
interface IProps {
    appLogo: string;
    routes: RouteItem[];
    sidebarBgUrl?: string;
    menuItems?: ISideBarMenuItem[];
    hideSwitchToLaunchbar?: boolean;
    headerPrefixElements?: React.ReactNode;
    headerSuffixElements?: React.ReactNode;
    location?: any;
}
declare const DashbardLayout: React.FunctionComponent<IProps>;
export default DashbardLayout;
