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