import { TFunction } from 'react-i18next'; import { Currency } from '@chargify/formatters'; import { SummaryTableRows } from '@chargify/custom-ui-components'; import { ChangePlanPreview } from '../../../machines/changePlan'; type Params = { changePlanPreview: ChangePlanPreview; t: TFunction<'subscriptions-manager'[]>; language: string; currency: Currency; }; export declare const mapChargeSummaryToTable: ({ changePlanPreview, t, language, currency, }: Params) => SummaryTableRows; export {};