import React, { FC } from 'react'; import { Section, Item, ItemProps } from './components'; export interface NavigationProps { title?: React.ReactNode; location: string; children?: React.ReactNode; onDismiss?(): void; menuItemRender?: (originalProps: { className: string; onClick: (event: React.MouseEvent) => void; }, itemProps: ItemProps, defaultDom: React.ReactNode) => React.ReactNode; } declare const Navigation: FC & { Item: typeof Item; Section: typeof Section; }; export default Navigation;