import { FC, ReactType, ReactNode } from 'react'; import { LinkProps } from '../../blocks/Link'; import { CountrySwitcherProps } from '../CountrySwitcher'; import { LanguageSwitcherProps } from '../LanguageSwitcher'; export interface FooterProps { navigationItems: { name: string; items: {}[]; }[]; socialNavigation: { items: { Link: ReactType; LinkProps: LinkProps; }[]; }; contactNavigation: { name: string; items: { Link: ReactType; LinkProps: LinkProps; }[]; }; CountrySwitcherProps: CountrySwitcherProps; LanguageSwitcherProps: LanguageSwitcherProps; children?: ReactNode; } export interface NavigationItemProps { Link: ReactType; LinkProps: LinkProps; info?: []; hideInPartnerPages?: boolean; } export declare const NavigationItem: FC; declare const Footer: FC; export default Footer;