import React from 'react'; interface INavLinkHandlerRenderProps { isMenuOpen: boolean; overflowLinks: any[]; shownLinks: any[]; toggleMenu: (e: React.SyntheticEvent) => void; } interface ISharedRenderProps { children: (renderProps: INavLinkHandlerRenderProps) => React.ReactNode; config?: { mobileLinkCount: number; tabletLinkCount: number; }; links: any[]; manual?: boolean; } declare const _default: React.MemoExoticComponent<({ links, manual, config, children }: ISharedRenderProps) => JSX.Element>; export default _default;