import { CardTypes } from './CardType.type'; export type PaymentMethod = { id: string; type: 'card' | 'paypal' | 'applePay' | 'googlePay'; customer: string; isDefault?: boolean; card: { id: string; brand: CardTypes; lastFour: string; expMonth: string; expYear: string; }; }; //# sourceMappingURL=PaymentMethod.type.d.ts.map