import { CurrencyOption, ProductPrice, Subscription } from "../../types/subscriptions"; import { ProjectSubscriptionPlan } from "../../types/projects"; export declare function getCurrencyString({ key, option, price }: { key: string; option: CurrencyOption; price: ProductPrice; }): string; export declare function getPriceString(price: ProductPrice): string; export declare function formatPrice(price: number, currency: string): string; export declare function getSubscriptionStatusText(subscription: Subscription): string; export declare function getLicenseStatus(subscriptions: Subscription[]): string; export declare function getSubscriptionPlanName(subscriptionPlan: ProjectSubscriptionPlan, t?: any): string;