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