import { MenuItem } from '@open-tender/types'; import { MenuOtherProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const MenuOther: ({ title, subtitle, showSubtitle, path, item, children, navigate }: { title: string; subtitle?: string | null; showSubtitle?: boolean; path: string; item: MenuItem; navigate: (route: string) => void; children: (props: MenuOtherProps) => ReactNode; }) => ReactNode; export default MenuOther;