export interface BranchOptions { maxConcurrent?: number; totalBudgetMs?: number; perQueryBudgetMs?: number; } export interface BranchResult { query: string; ok: boolean; result?: T; error?: string; timedOut?: boolean; } export declare function exploreInParallel(queries: string[], executor: (q: string, signal: AbortSignal) => Promise, options?: BranchOptions): Promise[]>; //# sourceMappingURL=branch-exploration.d.ts.map