import type { ApiInterfaceRx } from '@polkadot/api/types'; import type { Observable } from '@polkadot/x-rxjs'; import type { DeriveStakingKeys } from './types'; export declare function keys(instanceId: string, api: ApiInterfaceRx): (stashId: Uint8Array | string) => Observable; export declare function keysMulti(instanceId: string, api: ApiInterfaceRx): (stashIds: (Uint8Array | string)[]) => Observable;