import React from 'react';
type FooterLink = {
label: string;
href: string;
};
type FooterProps = {
year?: number;
brand?: string;
brandUrl?: string;
links?: FooterLink[];
declare const Footer: React.FC<FooterProps>;
export default Footer;