import { type BgVariant } from '../../utils/bg.js'; export interface FooterCenteredProps { brand?: string; copyright?: string; logo?: React.ReactNode; links?: React.ReactNode; social?: React.ReactNode; bg?: BgVariant; className?: string; } export declare function FooterCentered({ brand, copyright, logo, links, social, bg, className, }: FooterCenteredProps): import("react/jsx-runtime").JSX.Element;