import React from 'react'; export interface LinkItem { href: string; target?: '_blank' | '_self' | string; } interface FooterItemItem extends LinkItem { title: string; } export interface FooterItemProps { title: string; items: FooterItemItem[]; linkComponent?: React.FC<{ href: string; }>; } declare const Footer: React.FC<{ footerItems: [ FooterItemProps, FooterItemProps, FooterItemProps, FooterItemProps ]; termsUrl: string; privacyUrl: string; iconLink?: React.FC<{ color: string; }>; linkComponent?: React.FC<{ href: string; }>; }>; export { Footer };