import { FC } from "react";
interface FooterFootProps {
    FooterFootData: Array<object>;
    onClick?: () => void;
}
declare const FooterFoot: FC<FooterFootProps>;
export default FooterFoot;
