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