import { Component } from "../../../types"; export interface PricingPlanProps extends Component { onClick?: (pricingPlanId: string) => void; price?: string; pricingPlanId: string; productItems: string[]; } export declare const PricingPlan: ({ onClick, pricingPlanId, onError, ...props }: PricingPlanProps) => import("react/jsx-runtime").JSX.Element | null;