export declare const TRUST_PRESETS: readonly ["standard", "low_trust_review"]; export type TrustPreset = (typeof TRUST_PRESETS)[number]; export declare const DEFAULT_TRUST_PRESET: "standard"; export declare const LOW_TRUST_REVIEW_PRESET: "low_trust_review"; export declare const LOW_TRUST_REVIEW_PRESET_VERSION: 1; export declare const LOW_TRUST_REVIEW_RAW_OUTPUT_DISPOSITION: "quarantine"; export declare const LOW_TRUST_TOOL_CLASSES: readonly ["git.read", "github.pr.read", "tests.local"]; export type LowTrustToolClass = (typeof LOW_TRUST_TOOL_CLASSES)[number] | string; export interface LowTrustOutputPromotionTarget { type: "issue"; issueId: string; } export interface LowTrustBoundary { mode: typeof LOW_TRUST_REVIEW_PRESET; companyId?: string; projectIds?: string[]; rootIssueId?: string; issueIds?: string[]; allowedAgentIds?: string[]; allowedSecretBindingIds?: string[]; allowedToolClasses?: LowTrustToolClass[]; outputPromotionTarget?: LowTrustOutputPromotionTarget; } export interface LowTrustReviewPresetPolicy { id: typeof LOW_TRUST_REVIEW_PRESET; version: typeof LOW_TRUST_REVIEW_PRESET_VERSION; rawOutputDisposition: typeof LOW_TRUST_REVIEW_RAW_OUTPUT_DISPOSITION; } export interface TrustAuthorizationPolicy extends Record { trustPreset?: TrustPreset; reviewPreset?: LowTrustReviewPresetPolicy; trustBoundary?: LowTrustBoundary; } export type SourceTrustArtifactKind = "issue" | "comment" | "document" | "work_product"; export type SourceTrustDisposition = "quarantined" | "promoted"; export interface SourceTrustPromotionSource { artifactKind: SourceTrustArtifactKind; artifactId: string; issueId?: string | null; } export interface SourceTrustMetadata { preset: TrustPreset; disposition: SourceTrustDisposition; sourceIssueId?: string | null; sourceRunId?: string | null; sourceAgentId?: string | null; promotedFrom?: SourceTrustPromotionSource | null; promotedByActorType?: "agent" | "user" | "system" | null; promotedByActorId?: string | null; promotedAt?: string | null; } //# sourceMappingURL=trust-policy.d.ts.map