export interface SpawnTarget { file: string; args: string[]; spawnOptions: { windowsVerbatimArguments?: boolean; }; } export declare function isUntrustedBinaryLocation(candidate: string): boolean; export declare function resolveTrustedCommand(command: string): string | undefined; export declare function resolveWindowsCommand(command: string): string | undefined; export declare function buildSpawnTarget(command: string, args: string[]): SpawnTarget; export declare function probeCommand(command: string, args: string[], options?: { timeoutMs?: number; }): string | undefined; export declare function commandAvailable(command: string, args?: string[]): boolean; //# sourceMappingURL=processUtils.d.ts.map