import { HTMLAttributes } from 'react';
import '../styles.css';
export interface Props extends HTMLAttributes {
items: {
icon?: any;
title: string;
style?: object;
submenu?: any;
action?: any;
};
depthLevel: number;
}
export declare const MenuItems: ({ items, depthLevel, ...props }: Props) => JSX.Element;