export type CheckoutHeaderProps = { /** When set, renders text (FlowMenu "flow name" variant) instead of the Healthspan wordmark. */ title?: string; onBack?: () => void; backLabel?: string; onClose?: () => void; closeLabel?: string; }; export declare const CheckoutHeader: ({ title, onBack, backLabel, onClose, closeLabel, }: CheckoutHeaderProps) => import("react").JSX.Element;