export interface FooterProps {
    footerLinks?: {
        name: string;
        link: string;
    }[];
    footerSocialMedia?: {
        logo: string;
        link: string;
    }[];
}
declare const Footer: ({ footerLinks, footerSocialMedia }: FooterProps) => import("react/jsx-runtime").JSX.Element;
export default Footer;
