import type { AsyncStatus } from '../../../../libs/cargo-hold-async'; import type { FC } from 'react'; import type { OpaqueAccountPaymentMethodsInstanceId } from '../../common/models/unique-props'; export interface AccountPaymentMethodsProviderProps { instanceId?: OpaqueAccountPaymentMethodsInstanceId | string; } export interface AccountPaymentMethodsZoneProvidedDql { paymentMethods: AccountDomain.PaymentMethod[]; instanceId: string | undefined; status: AsyncStatus | undefined; } export declare const AccountPaymentMethodsProvider: FC;