import { Component } from "../../../types"; interface PricingPlanVisualProps extends Component { isActive: boolean; onPlanSelect: (pricingPlanId: string) => void; price?: string; pricingPlanId: string; productItems: string[]; } export declare const PricingPlanVisual: ({ withContainer, withTitle, title, price, productItems, isActive, onPlanSelect, pricingPlanId, callToAction, }: PricingPlanVisualProps) => import("react/jsx-runtime").JSX.Element; export {};