import { TFunction } from 'react-i18next'; import { SummaryTableRows } from "../../../../../custom-ui-components/src"; import { Currency } from "../../../../../formatters/src"; 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 {};