import { RaycastResponse, RaycastRequest } from "./ray_cast"; export declare const protobufPackage = "bosdyn.api"; export interface RayCastService { /** * Asks robot to cast the desired ray against its map of the * surrounding environment to find the nearest intersection point. */ Raycast(request: RaycastRequest): Promise; } export declare class RayCastServiceClientImpl implements RayCastService { private readonly rpc; constructor(rpc: Rpc); Raycast(request: RaycastRequest): Promise; } interface Rpc { request(service: string, method: string, data: Uint8Array): Promise; } export {}; //# sourceMappingURL=ray_cast_service.d.ts.map