import React from 'react'; import { ChangePlanPreview } from '../../machines/changePlan'; type Props = { productChangeStrategy: ChangePlanPreview['productChangeStrategy']; nextBillingDate: string; basePlanPrice: string; totalCharge: string; creditBalance: string; }; export declare const PlanChangeAlerts: ({ basePlanPrice, productChangeStrategy, nextBillingDate, totalCharge, creditBalance, }: Props) => React.JSX.Element; export {};