import { callGateway } from "../gateway/call.js"; import type { GatewayRpcOpts } from "./gateway-rpc.types.js"; type CallGatewayFromCliRuntimeExtra = { clientName?: Parameters[0]["clientName"]; mode?: Parameters[0]["mode"]; deviceIdentity?: Parameters[0]["deviceIdentity"]; expectFinal?: boolean; progress?: boolean; scopes?: Parameters[0]["scopes"]; }; export declare function callGatewayFromCliRuntime(method: string, opts: GatewayRpcOpts, params?: unknown, extra?: CallGatewayFromCliRuntimeExtra): Promise>; export {};