export type PricingPlanCardV2Props = Readonly<{ name: React.ReactNode; description?: React.ReactNode; price?: string; /** The crossed-out monthly reference when a yearly discount applies. */ originalPrice?: string; priceLabel?: React.ReactNode; /** The credits line, or the tier select for plans with several tiers. */ credits?: React.ReactNode; cta?: React.ReactNode; features?: React.ReactNode; /** Wraps the card in the gradient frame with this label on top. */ popularLabel?: React.ReactNode; /** The price still resolves: a skeleton in its place. */ isPriceLoading?: boolean; /** The price fetch settled with no price: a dash. */ isPriceError?: boolean; /** The plan cannot be bought for the selected period. */ isUnavailable?: boolean; unavailableLabel?: React.ReactNode; }> & React.ComponentProps<"div">; export declare const PricingPlanCardV2: ({ name, description, price, originalPrice, priceLabel, credits, cta, features, popularLabel, isPriceLoading, isPriceError, isUnavailable, unavailableLabel, className, ...rest }: PricingPlanCardV2Props) => import("react").JSX.Element; //# sourceMappingURL=PricingPlanCardV2.d.ts.map