import { ReactNode } from '../../preact/compat'; import { IntlShape } from 'react-intl'; import { EligibilityPlan, EligibilityPlanToDisplay } from '../types'; export declare const paymentPlanShorthandName: (payment: EligibilityPlan) => ReactNode; /** * String version of paymentPlanShorthandName that returns a translated string * instead of a ReactNode for use in aria-label attributes for example */ export declare const paymentPlanShorthandText: (payment: EligibilityPlan, intl: IntlShape) => string; export declare const paymentPlanInfoText: (payment: EligibilityPlanToDisplay) => ReactNode; export declare const getPlanDescription: (plan: EligibilityPlan, intl: IntlShape) => string;