import type { ApiInterfaceRx } from '@polkadot/api/types'; import type { EventRecord, Hash, SignedBlock } from '@polkadot/types/interfaces'; import type { Observable } from '@polkadot/x-rxjs'; interface Result { block: SignedBlock; events: EventRecord[]; } export declare function events(instanceId: string, api: ApiInterfaceRx): (at: Hash) => Observable; export {};