import React from 'react'; import { Currency } from '@chargify/formatters'; import { ChangePlanInterpreter } from '../../machines/changePlan/types'; type Props = { changePlanService: ChangePlanInterpreter; currentPlanId: number; currency: Currency; }; declare const ChangePlanContainer: ({ currentPlanId, currency, changePlanService, }: Props) => React.JSX.Element; export default ChangePlanContainer;