import { Component, CustomCurrencyNumberFormat } from "../../../types"; export interface ProductItemRow { productItem: string; productItemId: string; rate: Record | undefined; rateId: string; } export interface FixedRateRow { discountable: boolean; fixedRateName: string; id: string; prepayable: boolean; price: string; type: string; } export interface PricingPlanSummaryProps extends Component { customCurrencyNumberFormat?: CustomCurrencyNumberFormat; } export declare const PricingPlanSummary: ({ onError, onLoadingChange, hideLoader, customCurrencyNumberFormat, ...props }: PricingPlanSummaryProps) => import("react/jsx-runtime").JSX.Element | null;