import { ReactNode } from 'react'; /** A Healthspan-owned saved card row (returning member), distinct from the Stripe `cardSlot`. */ export type SavedCardProps = { /** Card-network mark (host/Stripe-provided). */ brandImage?: string; /** Masked card, e.g. "•••• 1234". */ last4: ReactNode; /** e.g. "Exp 1 / 2029". */ expLabel?: ReactNode; onEdit?: () => void; editLabel?: string; }; export declare const SavedCard: ({ brandImage, last4, expLabel, onEdit, editLabel }: SavedCardProps) => import("react").JSX.Element;