import { ReactNode } from "react"; export declare type FooterProps = { links?: { href: string; label: string; }[]; copyright?: ReactNode; }; export declare const Footer: ({ links, copyright }: FooterProps) => import("@emotion/react/jsx-runtime").JSX.Element;