import type { LeafDef } from '../../../core/command.js'; export interface SupportPrepareResult { status: 'prepared'; reference: string; path: string; node_id: string; source_count: number; bytes: number; } /** Output-free: collects and writes the prepared artifact and returns a * small result. Never prints; the leaf below owns argv/rendering. */ export declare function prepareSupportBundle(nodeId: string): SupportPrepareResult; export declare const supportPrepareLeaf: LeafDef;