import { Service } from "@onflow/typedefs"; export declare const execServiceHandlerFactory: ({ onExecResult, execStrategyOpts, execStrategyArgs, abortSignal, }: { onExecResult: (result: any) => void; execStrategyOpts: any; execStrategyArgs: any; abortSignal: AbortSignal; }) => ({ service }: { service: Service; }) => Promise;