import { FC, ReactType } from 'react'; import { LinkProps } from '../../blocks/Link'; export interface NavigationProps { items?: { name: string; Link?: ReactType; LinkProps: LinkProps; items?: { name: string; Link?: ReactType; LinkProps: LinkProps; }[]; }[]; LoginProps?: LinkProps; SignUpProps?: LinkProps; Link?: ReactType; setMobileNavOpen?: (open: boolean) => {}; isStickyHeader: boolean; Search: ReactType; SearchProps: any; navigationItems: { name: string; items: {}[]; }[]; contactNavigation: { name: string; items: { Link: ReactType; LinkProps: LinkProps; }[]; }; } declare const Navigation: FC; export default Navigation;