import { FC } from 'react'; import { IMenuOption } from '../interfaces'; export interface SideMenuListItemProps { menuItem: IMenuOption; onClose: () => void; onNavigate?: (link: string | Partial<{ pathname: string; state?: unknown; }>) => void; } export declare const SideMenuListItem: FC; export default SideMenuListItem; //# sourceMappingURL=SideMenuListItem.d.ts.map