import { ReceiptFailureCode } from '../types/receipt.js'; export declare const OPERATION_IDEMPOTENCY_VALUES: readonly ["idempotent", "conditional", "non-idempotent"]; export type OperationIdempotency = (typeof OPERATION_IDEMPOTENCY_VALUES)[number]; export declare const PRE_APPLY_THROW_CODES: readonly ["TARGET_NOT_FOUND", "CAPABILITY_UNAVAILABLE", "INVALID_TARGET", "AMBIGUOUS_TARGET", "REVISION_MISMATCH", "MATCH_NOT_FOUND", "AMBIGUOUS_MATCH", "STYLE_CONFLICT", "PRECONDITION_FAILED", "INVALID_INPUT", "CROSS_BLOCK_MATCH", "SPAN_FRAGMENTED", "TARGET_MOVED", "PLAN_CONFLICT_OVERLAP", "INVALID_STEP_COMBINATION", "REVISION_CHANGED_SINCE_COMPILE", "INVALID_INSERTION_CONTEXT", "DOCUMENT_IDENTITY_CONFLICT", "INTERNAL_ERROR", "ADDRESS_STALE", "DUPLICATE_ID", "INVALID_CONTEXT", "RAW_MODE_REQUIRED", "PRESERVE_ONLY_VIOLATION", "CAPABILITY_UNSUPPORTED", "LOCK_VIOLATION", "TYPE_MISMATCH", "STORY_NOT_FOUND", "STORY_MISMATCH", "STORY_NOT_SUPPORTED", "CROSS_STORY_PLAN", "MATERIALIZATION_FAILED"]; export type PreApplyThrowCode = (typeof PRE_APPLY_THROW_CODES)[number]; export interface CommandThrowPolicy { preApply: readonly PreApplyThrowCode[]; postApplyForbidden: true; } export interface CommandStaticMetadata { mutates: boolean; idempotency: OperationIdempotency; supportsDryRun: boolean; supportsTrackedMode: boolean; possibleFailureCodes: readonly ReceiptFailureCode[]; throws: CommandThrowPolicy; deterministicTargetResolution: boolean; remediationHints?: readonly string[]; /** When true, this operation bypasses PM transaction history (out-of-band XML mutation). */ historyUnsafe?: boolean; } //# sourceMappingURL=metadata-types.d.ts.map