import { ElementType } from 'react'; export interface FooterTheme { brand: FooterBrandTheme; groupLink: FooterLinkGroupTheme; root: FooterRootTheme; } export interface FooterLinkGroupTheme { title: string; base: string; col: string; titleAs?: ElementType; } export interface FooterBrandTheme { base: string; img: string; span: string; } export interface FooterRootTheme { base: string; container: string; } export declare const footerTheme: FooterTheme; //# sourceMappingURL=theme.d.ts.map