import React from "react"; import { Prices, PricingCardProps } from "./PricingCard"; import { WithTheme, WithoutTheme } from "../types"; export declare type PricingDynamicProps = WithTheme<{ data: Array & { prices: [Prices, Prices] | Prices; comparisons?: [string | React.ReactNode, string | React.ReactNode]; }>; description: string; options: [string, string]; title?: string; selectedCardLabel?: string; }>; export declare function PricingDynamic({ data, description, options, selectedCardLabel, title, ...props }: PricingDynamicProps): JSX.Element;