import { type HTMLAttributes, type ReactNode } from "react"; export interface FooterColumn { title: string; links: { label: string; href: string; }[]; } export interface LPFooterProps extends HTMLAttributes { logo?: ReactNode; description?: string; columns: FooterColumn[]; bottomLeft?: ReactNode; bottomRight?: ReactNode; } export declare const LPFooter: import("react").ForwardRefExoticComponent>;