import React from 'react'; import { ProductChangeStrategy } from '../../machines/changePlan/index'; type Props = { productName: string; basePlanPrice: string; productChangeStrategy: ProductChangeStrategy; existingBalance: string; billingEndDate: string; nextBillingAmount: string; proratedCreditAmount: string; currentProductName: string; }; export declare const PlanChangeSummary: ({ productName, basePlanPrice, productChangeStrategy, existingBalance, billingEndDate, nextBillingAmount, currentProductName, proratedCreditAmount, }: Props) => React.JSX.Element; export {};