import { ITransport } from "../../core/transports/transport.interface.js"; import { RequestOptions } from "../../core/types/request-options.js"; import type { GetCommandStatusRequest, GetCommandStatusResponse } from "../../transports/grpc/generated/canton/com/daml/ledger/api/v2/admin/command_inspection_service.js"; export declare class CommandInspectionServiceClient { private readonly transport; constructor(transport: ITransport); /** Reads ledger-admin command status records. Supported on gRPC; JSON rejects it. */ getCommandStatusAsync(request: GetCommandStatusRequest, options?: RequestOptions): Promise; }