import type { ComponentProps, FC } from 'react'; export interface FlowbiteFooterTheme { base: string; container: string; bgDark: string; groupLink: { base: string; link: { base: string; href: string; }; col: string; }; icon: { base: string; size: string; }; title: { base: string; }; divider: { base: string; }; copyright: { base: string; href: string; span: string; }; brand: { base: string; img: string; span: string; }; } export interface FooterProps extends ComponentProps<'footer'> { bgDark?: boolean; container?: boolean; } export declare const FooterComponent: FC; export declare const Footer: FC & { Copyright: FC; Link: FC; LinkGroup: FC; Brand: FC; Icon: FC; Title: FC; Divider: FC, HTMLHRElement>>; };