import React from "react"; import { Checkpoint } from "./Cart"; interface SubtotalSectionProps { showDiscountOnMRP?: boolean; cartCheckpoints?: Checkpoint[]; toggleDecimal?: boolean; primaryTextColor?: string; discountApplied?: boolean; discountAmountApplied?: number; showTrustedBadge?: boolean; } declare function SubtotalSection({ showDiscountOnMRP, cartCheckpoints, toggleDecimal, primaryTextColor, discountApplied, discountAmountApplied, showTrustedBadge, }: SubtotalSectionProps): React.JSX.Element | null; export default SubtotalSection;