/// export interface StickyBottomCartProps { shouldShowCart: boolean; showMobileCart?: boolean; setShouldShowCart(shouldShowCart: boolean): void; numberOfItemsInCart?: number; pricePerMonth?: number; priceUpfront?: number; } declare const StickyBottomCart: ({ setShouldShowCart, shouldShowCart, numberOfItemsInCart, pricePerMonth, priceUpfront, }: StickyBottomCartProps) => JSX.Element; export default StickyBottomCart;