export interface FooterColumnProps { label: string; children?: React.ReactNode; className?: string; } export declare function FooterColumn({ label, children, className }: FooterColumnProps): import("react/jsx-runtime").JSX.Element;