import type { ApiInterfaceRx } from '@polkadot/api/types';
import type { Observable } from '@polkadot/x-rxjs';
import type { DeriveElectionsInfo } from './types';
/**
* @name info
* @returns An object containing the combined results of the storage queries for
* all relevant election module properties.
* @example
*
*
* ```javascript
* api.derive.elections.info(({ members, candidates }) => {
* console.log(`There are currently ${members.length} council members and ${candidates.length} prospective council candidates.`);
* });
* ```
*/
export declare function info(instanceId: string, api: ApiInterfaceRx): () => Observable;