/** * @author linhd * @date 2021/8/10 17:54 * @description 竖向菜单 */ import { FunctionComponent } from 'react'; import { MenuListProps } from './interface'; /** 上下箭头 */ export type FlipDisable = { prev: boolean; next: boolean; }; export declare const VerticalMenuList: FunctionComponent; export default VerticalMenuList;