export interface HookProcessOptions { command: string; args?: string[]; timeoutMs: number; stdinPayload: string; env?: NodeJS.ProcessEnv; label: string; } export interface HookProcessResult { stdout: string; stderr: string; exitCode: number | null; error?: string; } export declare function runHookProcess(opts: HookProcessOptions): Promise;