import { TFunction } from 'react-i18next'; import { Currency } from "../../../../../../formatters/src"; import { Coupon } from '../../../../models/subscription/types'; import { CouponErrorCodes } from '../../../../machines/subscription/types'; export declare const getAlertTitle: ({ code, percentage, recurring, amountInCents }: Coupon, t: TFunction<'subscriptions-manager'[]>, currency: Currency) => string; export declare const getAlertMsg: ({ percentage, amountInCents, expiresAt }: Coupon, t: TFunction<'subscriptions-manager'[]>, currency: Currency) => string; export declare const getCouponErrorMsg: (error: CouponErrorCodes, t: TFunction<'subscriptions-manager'[]>) => string;