import { TFunction } from 'react-i18next'; import { Currency } from "../../../../../formatters/src"; type Params = { accrueCharge: boolean; t: TFunction<'subscriptions-manager'[]>; currency: Currency; language: string; totalAmountInCents: number; }; export declare const getAllocationSummaryPaymentMessage: ({ accrueCharge, t, currency, language, totalAmountInCents, }: Params) => { title: string; description?: undefined; } | { title: string; description: string; }; export {};