import { SubscriptionPaymentAccount } from './subscriptionPaymentAccountState'; export interface SubscriptionPaymentAccountPayload { account_holder_type: string; account_number_last4: string; account_type: string | null; bank_name: string; direct_debit_scheme: string; masked_account_number: string; name_on_account: string; provider_verification_status: { code: string | null; name: string | null; }; status: string | null; subscription_payment_account_id: string; } export declare const toSubscriptionPaymentAccount: (payload: SubscriptionPaymentAccountPayload) => SubscriptionPaymentAccount;