/** * Shell-quote a single argument for safe use in a command string. * * Arguments containing only safe characters are returned as-is. * All others are wrapped in single quotes with embedded single quotes escaped. */ export declare function shellQuote(arg: string): string; //# sourceMappingURL=shell-quote.d.ts.map