import { AccountId } from '@plugnet/types/interfaces'; import { Observable } from 'rxjs'; import { ApiInterfaceRx } from '@plugnet/api/types'; /** * @description Return a boolean array indicating whether the passed accounts had received heartbeats in the current session */ export declare function receivedHeartbeats(api: ApiInterfaceRx): (addresses: (AccountId | string)[]) => Observable;