import { type ReactNode } from 'react'; import { type BgVariant } from '../../utils/bg.js'; export interface ComparisonFeature { feature: string; tiers: boolean[]; } export interface PricingComparisonProps { headline?: string; subheadline?: string; monthlyLabel?: string; annualLabel?: string; comparisonFeatures?: ComparisonFeature[]; tierNames?: string[]; bg?: BgVariant; className?: string; children?: ReactNode; } export declare function PricingComparison({ headline, subheadline, monthlyLabel, annualLabel, comparisonFeatures, tierNames, bg, className, children, }: PricingComparisonProps): import("react/jsx-runtime").JSX.Element;