import React, { PropsWithChildren } from "react"; type FooterSectionsProps = { isCartPageEnabled?: boolean; backgroundColour?: string; isLargeScreen: boolean; children: PropsWithChildren; }; declare const FooterSections: React.FC; export default FooterSections;