///
import { FooterProps, FooterLinksProps } from "./Footer";
import { WithoutTheme } from "../types";
export declare type FooterWithLinksProps = {
description: string;
links: Array>;
reverse?: boolean;
} & FooterProps;
export declare function FooterWithLinks({ name, description, socials, links, theme, color, reverse, ...props }: FooterWithLinksProps): JSX.Element;