import type * as _Core from "@osdk/foundry.core"; import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client"; import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2"; import type * as _AipAgents from "../_components.js"; /** * Get the trace of an Agent response. The trace lists the sequence of steps that an Agent took to arrive at * an answer. For example, a trace may include steps such as context retrieval and tool calls. Clients should * poll this endpoint to check the realtime progress of a response until the trace is completed. * * @beta * * Required Scopes: [api:aip-agents-read] * URL: /v2/aipAgents/agents/{agentRid}/sessions/{sessionRid}/sessionTraces/{sessionTraceId} */ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [ agentRid: _AipAgents.AgentRid, sessionRid: _AipAgents.SessionRid, sessionTraceId: _AipAgents.SessionTraceId, $queryParams?: { preview?: _Core.PreviewMode | undefined; } ]): Promise<_AipAgents.SessionTrace>; //# sourceMappingURL=SessionTrace.d.ts.map