import React from 'react'; export interface LinkType { label: string; route: string | null; handler?: () => void; } declare const FooterMinorNavigation: React.FC; interface BottomMinorNavigationProps { links: Array; } export default FooterMinorNavigation;