import React from "react"; interface PrismicFooterV2Document { key: string; total_member: string; total_cause: string; total_raised: string; body: Array<{ primary: { text: Array<{ type: string; text: string; spans: Array; }>; }; items: Array<{ call_to_action_text: string | null; call_to_action_link: { link_type: string; url?: string; }; }>; id: string; slice_type: string; slice_label: string | null; }>; } declare function FooterV2({ className, dataFooter: document, bottomSectionOnly, OrangeCardUrl, OrangeCardFirstTitle, OrangeCardSecondTitle, }: { className?: string; dataFooter: PrismicFooterV2Document; bottomSectionOnly?: boolean; OrangeCardUrl?: string; OrangeCardFirstTitle?: string; OrangeCardSecondTitle?: string; }): React.JSX.Element; export default FooterV2;