declare const FooterMainNavigation: ({ columns }: FooterMainNavigationProps) => JSX.Element; export default FooterMainNavigation; export interface LinkType { label: string; route: string; } export interface ColumnType { items: Array; } interface FooterMainNavigationProps { columns: Array; }