import type { HasImplementationName, HasInstance, HasInstanceId } from '../../../libs/util-domain-state'; import type { AccountDataDomainInstance } from '../interfaces'; import type { AccountDomainState } from './account-domain.types'; import type { AccountDomainInstanceState } from './account-instance.types'; export declare const createAccountInstanceInitialState: (options: HasImplementationName & HasInstance & HasInstanceId) => AccountDomainInstanceState; export declare const accountDomainInitialState: AccountDomainState;