import { FC } from "react";
interface FooterAboutProps {
    className?: string;
    title: string;
    description: string;
    btnLabel: string;
    onClick?: () => void;
}
declare const FooterAbout: FC<FooterAboutProps>;
export default FooterAbout;
