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; displayName: string; __docgenInfo: { description: string; displayName: string; props: { classes: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; data: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; isExpand: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; icons: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; expand: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default PriceBreakdown;