export interface PaymentMethod { id?: string; name: string; brand: string; expMonth: number; expYear: number; last4: string; addressLine1: string; addressLine2?: string; city: string; state: string; country: string; postalCode: string; paymentMethodId: string; } export interface PaymentMethods { items: PaymentMethod[]; } /** * Converts the Payment Method object from Stripe and coverts it to the Payment Method model. * * @param {object} paymentMethod - Payment Method object from Stripe. * @returns PaymentMethod model. */ export declare const createPaymentMethodModelFromStripe: (paymentMethod: any) => PaymentMethod;