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