import { Interaction } from "@onflow/typedefs"; export interface ISendPingContext { response?: Function; } interface ISendPingOpts { node?: string; httpRequest?: any; } export declare function sendPing(ix: Interaction, context?: ISendPingContext, opts?: ISendPingOpts): Promise; export {};