import {IMenuItem} from "./ITopBar";
export interface IDrawerGroup
{
    subheader:string;
    items:IMenuItem[];
    access?:string;
}
