import type { CardType } from "./card-type";
/**
 * Card Response
 *
 * Details of the payment card.
 */
export type CardResponse = {
    /**
     * Last 4 digits of the payment card number.
     */
    readonly last_4_digits?: string;
    type?: CardType;
};
//# sourceMappingURL=card-response.d.cts.map