import * as React from 'react'; import { MobileNavigationMenuProps, ProfileMenu } from '../types'; type Props = MobileNavigationMenuProps & { profile?: ProfileMenu; show?: boolean; onClose: () => void; }; declare const MobileMenu: ({ show, profile, buttons, label, header, items, footer, action, onClose }: Props) => React.JSX.Element; export default MobileMenu;