import { ITransport } from "../../core/transports/transport.interface.js"; import { SubmitCommandsRequest } from "../../core/types/requests/submit-commands-request.js"; import { SubmitCommandResponse } from "../../core/types/responses/submit-command-response.js"; export declare class CommandSubmissionServiceClient { private readonly transport; constructor(transport: ITransport); /** Submits a command without waiting. Placeholder until explicitly implemented. */ submitAsync(_request: SubmitCommandsRequest): Promise; }