import React from "react"; import { CurrencyOption, ProductPrice } from "../../index"; export interface SubscriptionPriceSelectParams { currencies: Record<"eur" | "usd", CurrencyOption>; selectedCurrency?: string; setSelectedCurrency: (currency: string) => void; largePriceLabel: boolean; fullWidth?: boolean; price: ProductPrice; } export declare function CurrencyPriceSelect({ currencies, setSelectedCurrency, largePriceLabel, selectedCurrency, fullWidth, price }: SubscriptionPriceSelectParams): React.JSX.Element;