export interface SpawnBudgetCounts { git: number; bash: number; /** Recent git argv samples (newest last), capped. */ lastGitArgs: string[][]; /** Recent bash argv samples (newest last), capped. */ lastBashArgs: string[][]; } export declare function noteGitSpawn(args: readonly string[]): void; export declare function noteBashSpawn(args: readonly string[]): void; export declare function getSpawnBudget(): SpawnBudgetCounts; export declare function resetSpawnBudget(): void;