import { ComponentProps, FC } from 'react'; import { DeepPartial } from '../../types/types'; import { FooterTheme } from './theme'; export interface FooterProps extends ComponentProps<"footer"> { container?: boolean; theme?: DeepPartial; } /** * * @name Footer * @description The Footer component is used to display the footer of a page, it is usually used to display the author, the date, and the contact information of the page. * @returns React.FC */ export declare const Footer: FC; //# sourceMappingURL=Footer.d.ts.map