/** * Incident response playbooks (v4.6). * * Maps correlated incidents to structured response playbooks * with immediate actions, investigation steps, and prevention. */ import type { IncidentCluster, Playbook } from "./types.js"; /** * Generate response playbooks for detected incidents. */ export declare function generatePlaybooks(incidents: IncidentCluster[]): Playbook[]; //# sourceMappingURL=playbooks.d.ts.map