import { VercelCore } from "../core.js";
import { RequestOptions } from "../lib/sdks.js";
import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/httpclienterrors.js";
import { ListSessionCommandsRequest, ListSessionCommandsResponseBody } from "../models/listsessioncommandsop.js";
import { ResponseValidationError } from "../models/responsevalidationerror.js";
import { SDKValidationError } from "../models/sdkvalidationerror.js";
import { VercelError } from "../models/vercelerror.js";
import { APIPromise } from "../types/async.js";
import { Result } from "../types/fp.js";
/**
 * List commands
 *
 * @remarks
 * Retrieves a list of all commands that have been executed in a session, including their current status, exit codes, and execution times, ordered from the most recent to the oldest.
 *
 * If set, this operation will use {@link Security.bearerToken} from the global security.
 */
export declare function sandboxesListSessionCommands(client: VercelCore, request: ListSessionCommandsRequest, options?: RequestOptions): APIPromise<Result<ListSessionCommandsResponseBody, VercelError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
//# sourceMappingURL=sandboxesListSessionCommands.d.ts.map