import type { AccountDomainState, AccountPaymentMethodsFacade } from '../../../libs/account-api'; import type { EntityId } from '../../../libs/cargo-hold-entity'; import type { HasLens } from '../../../libs/util-domain-state'; export declare type UseAccountPaymentMethodsInstance = (instanceId?: EntityId | string | undefined) => AccountPaymentMethodsFacade | undefined; export declare const makeUseAccountPaymentMethodsInstance: (options: HasLens) => UseAccountPaymentMethodsInstance;