export type PaymentCardBrand = 'visa' | 'mastercard' | 'amex' | 'discover' | 'unknown'; interface PaymentMethodCardProps { brand?: PaymentCardBrand | string; last4: string; expMonth?: number | string; expYear?: number | string; isDefault?: boolean; class?: string; onselect?: () => void; onremove?: () => void; onmakeDefault?: () => void; } declare const PaymentMethodCard: import("svelte").Component; type PaymentMethodCard = ReturnType; export default PaymentMethodCard;