import type { JsonValue, Struct } from '@bufbuild/protobuf'; import type { CallOptions } from '@connectrpc/connect'; import { RobotClient } from '../../robot'; import type { Options } from '../../types'; import type { Generic } from './generic'; /** * A gRPC-web client for a Generic service. * * @group Clients */ export declare class GenericClient implements Generic { private client; readonly name: string; private readonly options; callOptions: CallOptions; constructor(client: RobotClient, name: string, options?: Options); getStatus(callOptions?: CallOptions): Promise; doCommand(command: Struct | Record, callOptions?: CallOptions): Promise; }