import type { Task } from "./types.js"; export interface InboxOptions { teamName: string; workerName: string; task: Task; cwd: string; } export declare function buildInboxMarkdown(opts: InboxOptions): string;