import { FC } from "react";
export interface FooterProps {
    title: string;
    btnLabel: string;
    description: string;
    FooterFootData: Array<any>;
    FooterMenuData: Array<any>;
    onClick?: () => void;
}
export declare const Footer: FC<FooterProps>;
export default Footer;
