export interface ResolvedShellCommand { file: string; args: string[]; useProcessGroup: boolean; } export interface ResolveShellCommandOptions { login?: boolean; } export declare function shellEscape(value: string, platform?: NodeJS.Platform): string; export declare function shellEscapeIfNeeded(value: string, platform?: NodeJS.Platform): string; export declare function resolveShellCommand(command: string, platform?: NodeJS.Platform, options?: ResolveShellCommandOptions): ResolvedShellCommand;