import type { SddLifecycleResult } from '@wrongstack/sdd'; type SddLifecycleOperation = 'cleanup_worktrees' | 'rollback' | 'destroy'; /** * Normalize an SDD lifecycle outcome into a chat entry. Accepts the live * `SddRunControl` return shapes (a bare worktree count from `cleanupWorktrees`, * the `{ ok, reverted, reason }` from `rollback`) and the host's uniform * `SddLifecycleResult` so the c / z / x keys read identically either way. */ export declare function sddLifecycleEntry(op: SddLifecycleOperation, result: number | { ok: boolean; reverted: number; reason?: string | undefined; } | SddLifecycleResult): { kind: 'info' | 'warn'; text: string; }; export {}; //# sourceMappingURL=sdd-lifecycle-entry.d.ts.map