/// export interface FooterItemProps { title: string; items: { title: string; href: string; target?: string; }[]; } interface FooterProps { footerItems: [ FooterItemProps, FooterItemProps, FooterItemProps, FooterItemProps ]; termsUrl: string; privacyUrl: string; apiUri?: string; } export default function Footer({ footerItems, termsUrl, privacyUrl, apiUri, }: FooterProps): JSX.Element; export {};