import { FC } from "react";
interface FooterMenuProps {
    FooterMenuData: Array<Object>;
    onClick?: () => void;
}
declare const FooterMenu: FC<FooterMenuProps>;
export default FooterMenu;
