import type { Draft, Task } from '@manehorizons/cadence-types'; /** * Recommends whether a task should be dispatched into an isolated git * worktree: 'worktree' when the task declares one or more files (it will * mutate the working tree), 'none' when it declares no files (read-only / * no mutation expected). Pure — no I/O. See rec-20260718-002. */ export declare function recommendIsolation(task: Task): 'worktree' | 'none'; /** * Renders a self-contained dispatch prompt for one task: the DRAFT's * objective, the task's action/verify/done, its files: boundary stated * explicitly, and a reminder of Spec 1's redundant-work monitoring. Pure — * no I/O. */ export declare function renderPacket(task: Task, draft: Draft): string; //# sourceMappingURL=packet.d.ts.map