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