/** SDK-owned platform module. This implementation is maintained in goodvibes-sdk. */ /** * Cascade rule → remediation playbook mapping. * * Each cascade rule ID maps to one or more playbook IDs that provide * actionable remediation steps for that failure mode. * * This mapping is consumed by: * - CascadeTimer (attaches remediationPlaybookIds to TimedCascadeResult) * - HealthPanel (surfaces remediation actions in the health dashboard) * - Completeness tests (verify every rule has at least one playbook) */ /** * Map from cascade rule ID → ordered list of remediation playbook IDs. * The first playbook in each array is the primary recommendation. */ export declare const CASCADE_PLAYBOOK_MAP: ReadonlyMap; /** * All cascade rule IDs that must have at least one playbook mapping. * Derived from cascade-rules.ts, update when rules are added or removed. */ export declare const ALL_CASCADE_RULE_IDS: readonly string[]; //# sourceMappingURL=cascade-playbook-map.d.ts.map