import type { ApiInterfaceRx } from '@polkadot/api/types'; import type { AccountId, AccountIndex } from '@polkadot/types/interfaces'; import type { Observable } from '@polkadot/x-rxjs'; /** * @name idToIndex * @param {( AccountId | string )} accountId - An accounts Id in different formats. * @returns Returns the corresponding AccountIndex. * @example *
* * ```javascript * const ALICE = '5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY'; * api.derive.accounts.idToIndex(ALICE, (accountIndex) => { * console.log(`The AccountIndex of ${ALICE} is ${accountIndex}`); * }); * ``` */ export declare function idToIndex(instanceId: string, api: ApiInterfaceRx): (accountId: AccountId | string) => Observable;