import React from "react"; import { ProductPrice } from "../../index"; export interface SubscriptionPriceSelectParams { productPrices: ProductPrice[] | undefined; selectedPrice?: ProductPrice; setSelectedPrice: (price?: ProductPrice) => void; largePriceLabel: boolean; fullWidth?: boolean; } export declare function SubscriptionPriceSelect({ productPrices, setSelectedPrice, largePriceLabel, selectedPrice, fullWidth }: SubscriptionPriceSelectParams): React.JSX.Element | null;