import * as React from 'react'; export interface FooterLink { label: string; href: string; } export interface IFooterProps { companyName: string; footerLinks?: FooterLink[]; withoutLinks?: boolean; } declare const Footer: React.FunctionComponent; export default Footer;