import React from "react"; export type FooterProps = { body: React.ReactNode; links?: Array; bottomLinks?: Array; copyrights?: React.ReactNode; terms?: string; maxWidth?: boolean; onClick?: ( event: React.MouseEvent ) => void; };