import { IconsType, PriceBreakdownClassesType } from '../types'; export declare type PriceBreakdownProps = { classes: PriceBreakdownClassesType; data: { currentTotalCost: number; baseTotalCost: number; shippingCost: number | null; points: number | null; coupon: number | null; discountBundle: number | null; }; isExpand: boolean; icons: IconsType; expand: () => void; }; declare const PriceBreakdown: ({ classes, data, isExpand, icons, expand, }: PriceBreakdownProps) => JSX.Element; export default PriceBreakdown;