import { ReactNode } from 'react'; export type SummaryRowVariant = 'default' | 'discount' | 'included' | 'subtotal'; export type SummaryLineItem = { label: ReactNode; /** Number → formatted as currency; string/node → rendered as-is (e.g. "Included"). */ value: ReactNode; /** Secondary subtext under the label, e.g. "3 months supply". */ sub?: ReactNode; variant?: SummaryRowVariant; }; export type SummaryRowProps = SummaryLineItem; export declare const SummaryRow: ({ label, value, sub, variant }: SummaryRowProps) => import("react").JSX.Element;