import * as React from "react"; declare type Props = Readonly<{ modalId: string; onOpenHelp?: () => void; togglePanel: () => void; }>; declare const NavRightLinks: ({ modalId, onOpenHelp, togglePanel }: Props) => React.ReactElement; export default NavRightLinks;