import { PaymentProfile, PaymentProfileStatus } from '../../models/paymentProfile'; export declare const serializePaymentProfiles: (items: PaymentProfile[], vaultCurrencies: Record, subscriptionCurrency: string, subscriptionPaymentProfileId: number) => { status: PaymentProfileStatus; isPaymentProfileConnected: boolean; id: number; expired?: boolean; type: import("../../models/paymentProfile").PaymentProfileType; requiredFields: string[]; vault: string; bankAccount?: import("../../models/paymentProfile").BankAccount; creditCard: import("../../models/paymentProfile").CreditCard; address?: import("../../models/paymentProfile/types").Address; }[];