/** * Root-cause categories the CloudFormation failure analyser can assign. * Single source of truth for both the `RootCause` interface * (CloudFormationFailureAnalyser.ts) and the wire-schema enum in * `failure/deploymentFailure.ts` — never redeclare the literals. */ export declare const FAILURE_ANALYSIS_CATEGORIES: readonly ["permissions", "validation", "dependency", "limit", "network", "unknown"]; export type FailureAnalysisCategory = (typeof FAILURE_ANALYSIS_CATEGORIES)[number];