import type { ContextPackResult } from "./types.js"; export interface ContextPackOptions { root?: string; query: string; taskId?: string; phase?: string; role?: string; targetChars?: number; hardCapChars?: number; maxFiles?: number; maxSnippets?: number; perSnippetChars?: number; } export declare function buildContextPack({ root, query, taskId, phase, role, targetChars, hardCapChars, maxFiles, maxSnippets, perSnippetChars, }: ContextPackOptions): Promise;