import * as React from 'react'; /** * A single link rendered inside a footer column or the legal links row. */ export interface MarketingFooterLink { label: string; href: string; } /** * A labeled group of links rendered as one column of the footer. */ export interface MarketingFooterColumn { heading: string; links: MarketingFooterLink[]; } export interface MarketingFooterProps { /** Logo slot — pass a rendered logo element (e.g. ``). */ logo: React.ReactNode; /** Short description shown under the logo in the first column. */ tagline?: string; /** Link columns rendered alongside the logo column. */ columns: MarketingFooterColumn[]; /** Small print links (Privacy, Terms, etc.) shown on the bottom row. */ legalLinks?: MarketingFooterLink[]; /** Copyright text shown on the bottom row. */ copyright?: string; className?: string; } /** * Multi-column site footer for public marketing pages. * * @description * Pairs with `MarketingNavbar` to bookend a marketing page: a logo/tagline * cell followed by an arbitrary number of link columns, plus a bottom bar * with copyright and legal links. * * @ai-rules * 1. Pass the logo as a rendered node via the `logo` prop — do not couple this file to any specific logo component. * 2. Pass at most 5 `columns` — the logo cell plus columns are capped at a 6-column desktop grid. * 3. `legalLinks` and `copyright` are optional; the bottom row still renders with just whichever is provided. */ export declare function MarketingFooter({ logo, tagline, columns, legalLinks, copyright, className, }: MarketingFooterProps): React.JSX.Element;