import { Struct, type JsonValue } from '@bufbuild/protobuf'; import type { CallOptions } from '@connectrpc/connect'; import type { RobotClient } from '../../robot'; import type { Options } from '../../types'; import type { Gantry } from './gantry'; import type { GetKinematicsResult } from '../../utils'; /** * A gRPC-web client for the Gantry component. * * @group Clients */ export declare class GantryClient implements Gantry { private client; readonly name: string; private readonly options; callOptions: CallOptions; constructor(client: RobotClient, name: string, options?: Options); getGeometries(extra?: {}, callOptions?: CallOptions): Promise; getKinematics(extra?: {}, callOptions?: CallOptions): Promise; getPosition(extra?: {}, callOptions?: CallOptions): Promise; moveToPosition(positionsMm: number[], speedsMmPerSec: number[], extra?: {}, callOptions?: CallOptions): Promise; home(extra?: {}, callOptions?: CallOptions): Promise; getLengths(extra?: {}, callOptions?: CallOptions): Promise; stop(extra?: {}, callOptions?: CallOptions): Promise; isMoving(callOptions?: CallOptions): Promise; getStatus(callOptions?: CallOptions): Promise; doCommand(command: Struct | Record, callOptions?: CallOptions): Promise; }