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