export type CliRunOptions = { timeoutMs?: number; /** Force Windows NUL-stdin wrapper even for unknown commands. */ interactive?: boolean; env?: NodeJS.ProcessEnv; }; /** * Cross-platform CLI runner used by OSINT and pentest tools. * On Windows, wraps known interactive CLIs with cmd.exe + NUL stdin. */ export declare function runCliTool(command: string, args: string[], options?: CliRunOptions): Promise; export declare function commandExists(command: string): Promise; //# sourceMappingURL=cli-runner.d.ts.map