import { type ReactNode } from 'react'; import { type BgVariant } from '../../utils/bg.js'; export interface PricingTiersProps { headline?: string; subheadline?: string; monthlyLabel?: string; annualLabel?: string; bg?: BgVariant; className?: string; children?: ReactNode; } export declare function PricingTiers({ headline, subheadline, monthlyLabel, annualLabel, bg, className, children, }: PricingTiersProps): import("react/jsx-runtime").JSX.Element;