import React from 'react'; import type { MenuProps as AntdMenuProps } from 'antd/es/menu'; import './style/index.less'; export interface ItemType { label: string; key: string; path?: string; icon?: React.ReactNode; isIframe?: boolean; children?: ItemType[]; [propName: string]: any; } export interface MenuProps extends Omit { items: ItemType[]; scene?: 'PORTAL' | 'DETAIL'; collapsed?: boolean; onClick?: (item: ItemType) => void; wrapperClassName?: string; } export declare const Menu: { (props: MenuProps): JSX.Element; defaultProps: { mode: string; inlineIndent: number; }; };