export declare const EXECUTION_DETAIL_QUERY = "\nquery AgentExecutionDetail($id: ID!) {\n agentExecutionDetail(id: $id) {\n id agentId status intent intentConfidence topicIds outputSummary outputContent outputType\n durationMs totalCost totalInputTokens totalOutputTokens\n triggerSource triggerType triggeredBy\n startedAt completedAt createdAt\n }\n}"; export interface ExecutionListItem { id: string; agentId?: string; status?: string; intent?: string; intentConfidence?: number; outputSummary?: string; durationMs?: number; totalCost?: number; totalInputTokens?: number; totalOutputTokens?: number; startedAt?: string; completedAt?: string; createdAt?: string; } export interface ExecutionDetail extends ExecutionListItem { topicIds?: string[]; outputContent?: unknown; outputType?: string; triggerSource?: string; triggerType?: string; triggeredBy?: string; } export declare function listExecutionsRemote(options: { targetOrg: string; executionId?: string; agentId?: string; status?: string; traceId?: string; correlationId?: string; actorType?: string; actorId?: string; limit?: number; offset?: number; }): Promise; export declare function getExecutionDetailRemote(options: { targetOrg: string; id: string; }): Promise; export declare function listExecutionStepsRemote(options: { targetOrg: string; executionId: string; traceId?: string; correlationId?: string; }): Promise>>; export declare function listExecutionToolCallsRemote(options: { targetOrg: string; executionId: string; traceId?: string; correlationId?: string; toolName?: string; }): Promise>>; export declare function listAuditLogsRemote(options: { targetOrg: string; agentId?: string; executionId?: string; traceId?: string; correlationId?: string; riskLevel?: string; actionTaken?: string; approvalStatus?: string; timeRangeStart?: string; timeRangeEnd?: string; limit?: number; offset?: number; }): Promise<{ items: Array>; total: number; }>; export declare function getGuardrailStatsRemote(options: { targetOrg: string; }): Promise<{ totalEvaluations: number; byRiskLevel: Record; byAction: Record; blockRate: number; avgApprovalTimeMinutes: number; }>; export declare function getGovernanceAuditInventoryRemote(options: { targetOrg: string; lookbackDays?: number; }): Promise<{ items: Array>; summary: Record; gaps: string[]; }>; export declare function getGovernanceAuditChainRemote(options: { targetOrg: string; executionId?: string; traceId?: string; correlationId?: string; outcomeEventId?: string; limit?: number; offset?: number; }): Promise<{ items: Array>; total: number; }>; export declare const AUDIT_LOG_LIST_QUERY = "\nquery AuditLogList($filters: AuditQueryFiltersInput!) {\n auditLogList(filters: $filters) {\n items { id executionId ruleName riskLevel operationType objectApiName actionTaken approvalStatus context createdAt }\n total\n }\n}"; export declare const GUARDRAIL_STATS_QUERY = "\nquery GuardrailStats($workspaceId: String!) {\n guardrailStats(workspaceId: $workspaceId) { totalEvaluations byRiskLevel byAction blockRate avgApprovalTimeMinutes }\n}"; export declare const GOVERNANCE_AUDIT_INVENTORY_QUERY = "\nquery GovernanceAuditInventory($workspaceId: String!, $lookbackDays: Int) {\n governanceAuditInventory(workspaceId: $workspaceId, lookbackDays: $lookbackDays) {\n items { key label unifiedStatus canonicalSource recentCount hasExecutionLink hasTraceLink notes }\n summary { lookbackDays since totalCategories unifiedCategories partialCategories missingCategories }\n gaps\n }\n}"; export declare const GOVERNANCE_AUDIT_CHAIN_QUERY = "\nquery GovernanceAuditChain($workspaceId: String!, $executionId: String, $traceId: String, $correlationId: String, $outcomeEventId: String, $limit: Int, $offset: Int) {\n governanceAuditChain(workspaceId: $workspaceId, executionId: $executionId, traceId: $traceId, correlationId: $correlationId, outcomeEventId: $outcomeEventId, limit: $limit, offset: $offset) {\n items { id executionId traceId correlationId actorType actorId source ruleName riskLevel operationType objectApiName actionTaken approvalId approvalStatus context outcomes { id outcomeType primaryExecutionId traceId correlationId billingStatus billingAmount } createdAt }\n total\n }\n}"; export declare const PERFORMANCE_PROJECTION_QUERY = "\nquery AiWorkforcePerformanceProjection { aiWorkforcePerformanceProjection { rows { agentId agentName roleVersion successContractLabel businessDecision hardGateStatus evidenceCompleteness observationWindow latestEvaluationAt orderKey allowedActions executionId } } }"; export declare const OPPORTUNITY_PROJECTION_QUERY = "\nquery AiWorkforceOpportunityProjection {\n aiWorkforceOpportunityProjection {\n rows {\n proposalId agentName status risk summary expiresAt proposalDigest\n stateFingerprint orderKey allowedTransitions\n }\n }\n}"; export declare const WORKFORCE_MEMORY_PROJECTION_QUERY = "\nquery AiWorkforceMemoryProjection {\n aiWorkforceMemoryProjection {\n rows {\n memoryItemId agentName safeSummary scopeLabel category sourceOutcomeStatus\n confidence status sensitivity validUntil generation orderKey\n allowedTransitions policyNotice\n }\n }\n}"; export declare function getTrainingReadinessRemote(options: { targetOrg: string; }): Promise>>; export declare function getPerformanceRemote(options: { targetOrg: string; }): Promise>>; export declare function getOpportunityRemote(options: { targetOrg: string; }): Promise>>; export declare function getMemoryRemote(options: { targetOrg: string; }): Promise>>; export declare function getExecutionCognitionRemote(options: { targetOrg: string; executionId: string; }): Promise | null>; export declare function getEffectiveAgentManifestRemote(options: { targetOrg: string; agentApiName: string; }): Promise>;