import React from "react"; import { SocialsProps } from "../util/Socials"; import { WithTheme } from "../types"; export declare type AReactProps = Omit, HTMLAnchorElement>, "className">; export declare type AProps = { label?: string; aProps?: AReactProps; extendClass?: string; }; export declare type FooterLinksProps = WithTheme<{ title: string; links: Array<{ node?: React.ReactNode; } & AProps>; extendClass?: string; }>; export declare function FooterLinks({ title, links, extendClass, ...props }: FooterLinksProps): JSX.Element; export declare type FooterProps = WithTheme<{ name?: string; socials?: Omit; }> & { credit?: { year?: string | number; } & AProps; linkNode?: React.ReactNode; }; export declare function Footer({ theme, color, withoutSection, socials, name, ...props }: FooterProps & { withoutSection?: boolean; }): JSX.Element;