import React from 'react'; import { MenuItemType } from '../types'; interface MenuProps { items: MenuItemType[]; toggleSidebar?: () => void; Link: any; nextJs?: boolean; currentPath: string; className?: string; style?: React.CSSProperties; ref?: React.RefObject; } export interface MenuRefObject { toggle: () => void; } declare const Menu: React.ForwardRefExoticComponent & React.RefAttributes>; export { Menu }; //# sourceMappingURL=index.d.ts.map