import { AccountId, AccountIndex } from '@plugnet/types/interfaces';
import { Observable } from 'rxjs';
import { ApiInterfaceRx } from '@plugnet/api/types';
/**
* @name indexToId
* @param {( AccountIndex | string )} accountIndex - An accounts index in different formats.
* @returns Returns the corresponding AccountId.
* @example
*
*
* ```javascript
* api.derive.accounts.indexToId('F7Hs', (accountId) => {
* console.log(`The AccountId of F7Hs is ${accountId}`);
* });
* ```
*/
export declare function indexToId(api: ApiInterfaceRx): (accountIndex: AccountIndex | string) => Observable;